:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #00A859;
            --accent: #C0C0C0;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #8A6D3B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B7BC;
            --text-muted: #707A8A;
            --border-subtle: #2B2F36;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background: var(--bg-surface);
            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-subtle);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        header .brand img {
            width: 25px;
            height: 25px;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }
        header .auth-btns {
            display: flex;
            gap: 10px;
        }
        header .auth-btns button {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle) !important; }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
        }
        .jackpot-container {
            background: var(--bg-elevated);
            margin: 20px 0;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: var(--font-secondary);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        h2 { font-size: 20px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 8px;
            font-size: 12px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guides-container { display: grid; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .guide-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee {
            background: var(--bg-elevated);
            padding: 10px;
            border-radius: 8px;
            overflow: hidden;
            height: 150px;
            position: relative;
        }
        .marquee-content {
            animation: scroll-up 20s linear infinite;
        }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            padding: 8px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }
        .winner-row span:last-child { color: var(--secondary); font-weight: bold; }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .provider-tag {
            flex: 1 1 45%;
            background: var(--bg-elevated);
            padding: 12px;
            text-align: center;
            border-radius: 4px;
            font-weight: 600;
            color: var(--accent);
            border: 1px solid var(--border-subtle);
        }
        .reviews-grid { display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-container { display: grid; gap: 10px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section {
            margin-top: 30px;
            background: #000;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .security-links { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .security-links a { color: var(--primary); font-size: 11px; text-decoration: none; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); text-decoration: none; font-size: 10px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; color: var(--text-muted); }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; margin-top: -15px; background: var(--bg-main); border-radius: 50%; padding: 10px; border: 2px solid var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .footer-row { margin-bottom: 25px; }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .contact-links a { color: var(--primary); text-decoration: none; }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: center;
        }
        .footer-grid a { color: var(--text-secondary); text-decoration: none; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 11px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }