:root {
            --brand-primary: #FFD700;
            --brand-variant: #B8860B;
            --brand-secondary: #1A237E;
            --brand-accent: #FF4500;
            --bg-main: #0B0E14;
            --bg-surface: #161A21;
            --bg-elevated: #1E232B;
            --bg-modal: #252B35;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --text-contrast: #0B0E14;
            --border-low: #2D343F;
            --border-high: #4B5563;
            --border-interactive: #FFD700;
            --success: #00C853;
            --error: #FF1744;
            --warning: #FFAB00;
            --info: #2979FF;
            --win: #00E676;
            --jackpot: #FFD700;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }
        h1 { font-size: 28px; line-height: 1.25; margin-bottom: 15px; text-align: center; color: var(--brand-primary); }
        h2 { font-size: 24px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        h3 { font-size: 14px; margin-top: 8px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header {
            background-color: var(--bg-surface);
            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-low);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 500; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-high); }
        .btn-register { background-color: var(--brand-primary); color: var(--text-contrast); }

        .banner-container { margin: 10px 0; }
        .banner-container img {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-family: var(--font-display); color: var(--brand-primary); font-size: 14px; font-weight: 800; text-transform: uppercase; }
        .jackpot-amount {
            font-family: var(--font-mono);
            font-size: 32px;
            color: var(--jackpot);
            font-weight: 800;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            margin: 10px 0;
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid var(--border-low);
        }
        .intro-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 15px 0; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-low);
            transition: transform 0.2s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

        .trust-section {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            text-align: center;
        }
        .icon-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .trust-icon { height: 30px; filter: grayscale(1) brightness(1.5); opacity: 0.7; }

        .guidelines { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-left: 3px solid var(--brand-primary); }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .marquee-container {
            background: var(--bg-elevated);
            padding: 15px 0;
            margin: 25px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        .marquee-content { display: inline-flex; animation: scroll 40s linear infinite; gap: 20px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag {
            background: var(--bg-modal);
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-low);
        }
        .winner-tag span { color: var(--win); font-weight: 700; font-family: var(--font-mono); }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background: var(--bg-surface);
            border-radius: 12px;
            margin: 25px 0;
        }
        .provider-name {
            background: var(--bg-elevated);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-low);
        }

        .reviews-grid { display: grid; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-low); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; color: var(--brand-primary); font-size: 20px; }
        .review-stars { color: var(--jackpot); font-size: 12px; margin: 4px 0; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 25px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-low); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-section {
            background: linear-gradient(to bottom, var(--bg-surface), var(--bg-main));
            padding: 30px 20px;
            text-align: center;
            border-radius: 12px;
            margin: 25px 0;
        }
        .security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
        .security-item { font-size: 12px; color: var(--text-muted); }
        .security-item i { font-size: 24px; color: var(--success); margin-bottom: 8px; display: block; }

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

        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-low); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--border-low); padding-bottom: 20px; }
        .footer-contact a { font-size: 14px; color: var(--brand-primary); display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-low); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .reviews-grid { grid-template-columns: 1fr 1fr; }
            h1 { font-size: 40px; }
        }