:root {
            --bg-primary: #0A0A0B;
            --bg-secondary: #161618;
            --bg-tertiary: #1F1F22;
            --brand-primary: #FFD700;
            --brand-variant: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-white: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --border-default: #2D2D30;
            --win-color: #00FF7F;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }

        header {
            background-color: var(--bg-secondary);
            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: 10px;
        }

        header img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header strong {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
        }

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

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

        header .btn-login {
            background-color: transparent;
            color: var(--text-white);
            border: 1px solid var(--brand-primary);
        }

        header .btn-reg {
            background: var(--gold-gradient);
            color: #000;
        }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

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

        .jackpot-container {
            background: var(--bg-tertiary);
            border: 2px solid var(--brand-variant);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .jackpot-label {
            font-family: 'Montserrat', sans-serif;
            color: var(--brand-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 40px;
            color: var(--brand-primary);
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }

        .intro-card {
            background: var(--bg-secondary);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }

        .intro-card h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }

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

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-white);
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--brand-primary);
            border-radius: 2px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

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

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

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-white);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .pl-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 11px;
            color: var(--text-muted);
        }

        .pl-item i {
            display: block;
            font-size: 22px;
            color: var(--brand-secondary);
            margin-bottom: 8px;
        }

        .guide-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .guide-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--brand-primary);
        }

        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-box {
            background: var(--bg-secondary);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 30px;
        }

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

        .lottery-item:last-child { border: none; }
        .win-user { color: var(--brand-primary); font-weight: 600; }
        .win-amt { color: var(--win-color); font-weight: bold; }
        .win-time { color: var(--text-muted); }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-tag {
            background: linear-gradient(90deg, var(--bg-tertiary), var(--bg-secondary));
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: var(--brand-primary);
            font-weight: bold;
            font-size: 14px;
            border: 1px solid var(--border-default);
        }

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

        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-secondary); }
        .review-user { font-weight: bold; font-size: 15px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: block; }

        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 10px;
            padding: 15px;
        }

        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-footer {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
        }

        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-footer p { font-size: 13px; color: var(--text-muted); }

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

        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            text-align: center;
            font-size: 12px;
            flex: 1;
        }

        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer {
            background-color: var(--bg-secondary);
            padding: 40px 15px 30px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }

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

        footer .contact-links a {
            color: var(--brand-primary);
            text-decoration: none;
            font-size: 14px;
            background: var(--bg-tertiary);
            padding: 8px 15px;
            border-radius: 5px;
        }

        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
            text-align: left;
        }

        footer .footer-cols a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 10px;
        }

        footer .copyright {
            font-size: 12px;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }