:root {
            --brand-primary: #D4AF37;
            --brand-hover: #F2D37A;
            --brand-secondary: #1A2B45;
            --brand-accent: #FFD700;
            --bg-deep: #0B0E14;
            --bg-surface: #161B22;
            --bg-elevated: #1F2937;
            --bg-nav: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --border-default: #2D3748;
            --border-active: #D4AF37;
            --heading-font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --body-font: 'Inter', 'Segoe UI', Roboto, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-deep);
            color: var(--text-primary);
            font-family: var(--body-font);
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--heading-font); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--brand-primary); }
        h1 { font-size: 24px; text-align: center; }
        h2 { font-size: 20px; border-left: 4px solid var(--brand-primary); padding-left: 10px; margin-top: 25px; }
        h3 { font-size: 16px; margin: 5px 0; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 15px; max-width: 1200px; margin: 0 auto; }
        
        header {
            background-color: var(--bg-nav);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--bg-deep); }

        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; border-radius: 8px; margin-bottom: 20px; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--brand-secondary) 0%, #000 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
        #jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: var(--brand-accent); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); margin: 10px 0; }

        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); margin-bottom: 25px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }

        .trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .trust-item { background: var(--bg-surface); padding: 12px; border-radius: 8px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-default); }
        .trust-item i { color: var(--brand-primary); font-size: 18px; width: 25px; text-align: center; }
        .trust-item span { font-size: 13px; font-weight: 500; }

        .guide-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 25px; }
        .guide-item { margin-bottom: 20px; }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: #000; padding: 10px 0; border-top: 1px solid var(--brand-primary); border-bottom: 1px solid var(--brand-primary); overflow: hidden; margin-bottom: 25px; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; }
        .winner-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-default); }
        .winner-tag span { font-size: 13px; }
        .win-amt { color: var(--brand-accent); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-btn { background: var(--brand-secondary); color: var(--brand-primary); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; font-size: 14px; border: 1px solid rgba(212, 175, 55, 0.3); }

        .review-grid { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 15px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 280px; background: var(--bg-surface); padding: 15px; border-radius: 12px; scroll-snap-align: start; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-card p { font-size: 13px; color: var(--text-secondary); height: 80px; overflow: hidden; }

        .faq-box { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-default); color: var(--brand-primary); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section { text-align: center; background: var(--bg-surface); padding: 25px 15px; border-radius: 12px; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 24px; color: var(--brand-primary); }
        .age-limit { display: inline-block; border: 2px solid #FF5252; color: #FF5252; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }

        footer { background: var(--bg-nav); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-row a { background: var(--bg-elevated); padding: 8px 15px; border-radius: 4px; font-size: 13px; color: var(--brand-primary); border: 1px solid var(--border-default); }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        footer .links-grid a { color: var(--text-muted); font-size: 13px; }
        footer .copy-text { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }