:root {
            --primary-gold: #D4AF37;
            --primary-gold-glow: #FFD700;
            --secondary-gold: #996515;
            --accent-luxury: #C0C0C0;
            --main-bg: #020617;
            --card-bg: #0F172A;
            --overlay-bg: #1E293B;
            --navigation-bg: #020617;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --brand-text: #D4AF37;
            --inverse: #020617;
            --success: #22C55E;
            --error: #EF4444;
            --win-jackpot: #FFD700;
            --border-default: #334155;
            --brand-border: #D4AF37;
            --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-display: 'Poppins', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--navigation-bg);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        header .logo-box img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }

        header .logo-box strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-text);
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        header button {
            padding: 6px 15px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: var(--inverse); }

        main { max-width: 800px; margin: 0 auto; padding: 10px; }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            border: 1px solid var(--border-default);
        }

        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-card {
            background: radial-gradient(circle at center, #1e293b, #0f172a);
            border: 2px solid var(--brand-border);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-card h2 {
            font-size: 14px;
            color: var(--text-secondary);
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .jackpot-amount {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 900;
            color: var(--win-jackpot);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background-color: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-gold);
        }

        .intro-card h1 {
            font-size: 20px;
            color: var(--primary-gold);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .intro-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .section-title {
            font-size: 18px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
        }

        .section-title::before {
            content: "";
            display: block;
            width: 4px;
            height: 18px;
            background: var(--primary-gold);
            border-radius: 2px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }

        .game-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }

        .game-card:active { transform: scale(0.95); }

        .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);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 500;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

        .payment-item {
            background-color: var(--card-bg);
            padding: 10px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }

        .payment-item i {
            display: block;
            font-size: 18px;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }

        .guide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .guide-item {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
        }

        .guide-item h3 { color: var(--primary-gold); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .lottery-box {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 25px;
        }

        .lottery-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 5px;
            border-bottom: 1px solid var(--border-default);
            font-size: 12px;
        }

        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: var(--text-primary); font-weight: 600; }
        .lottery-amount { color: var(--success); font-weight: 700; }
        .lottery-game { color: var(--text-muted); }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }

        .provider-tag {
            flex: 1 0 45%;
            background: linear-gradient(45deg, #1e293b, #0f172a);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--accent-luxury);
            font-size: 14px;
            border: 1px solid var(--border-default);
        }

        .review-card {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }

        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { color: var(--primary-gold); font-size: 20px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--win-jackpot); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; text-align: right; }

        .faq-container { margin-bottom: 25px; }
        .faq-item {
            background-color: var(--card-bg);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--primary-gold);
            cursor: pointer;
            font-size: 14px;
            border-bottom: 1px solid var(--border-default);
        }

        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); }

        .security-section {
            background-color: var(--overlay-bg);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            font-size: 24px;
            color: var(--success);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: var(--navigation-bg);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            gap: 4px;
        }

        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }

        footer {
            background-color: var(--navigation-bg);
            padding: 30px 20px 100px;
            border-top: 1px solid var(--border-default);
            font-size: 13px;
        }

        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .footer-contact a { color: var(--text-secondary); text-decoration: none; }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-links a { color: var(--text-muted); text-decoration: none; }

        .footer-copy {
            text-align: center;
            color: var(--text-muted);
            font-size: 11px;
            border-top: 1px solid var(--border-default);
            padding-top: 15px;
        }