:root {
            --primary: #D4AF37;
            --primary-light: #F2D06B;
            --primary-dark: #AA8A2E;
            --secondary: #1A1D23;
            --accent: #00FF41;
            --bg-main: #0B0C0E;
            --bg-surface: #16191E;
            --bg-elevated: #1E2229;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --border-default: #2D3748;
            --font-heading: '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);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--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 div.logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            font-family: var(--font-heading);
        }
        header div.actions {
            display: flex;
            gap: 8px;
        }
        header button {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header button.login-btn {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        header button.register-btn {
            background: var(--primary);
            color: var(--bg-main);
        }
        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;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2229 0%, #0b0c0e 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label {
            color: var(--primary);
            font-family: var(--font-heading);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-value {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }
        h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        h2 {
            font-family: var(--font-heading);
            font-size: 20px;
            margin: 25px 0 15px;
            color: var(--primary-light);
            border-left: 4px solid var(--primary);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .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-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 11px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            display: block;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .guide-section {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .guide-section p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 8px;
        }
        .lottery-marquee {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            padding: 8px;
            background: var(--bg-elevated);
            border-radius: 6px;
        }
        .lottery-user { color: var(--primary-light); }
        .lottery-amount { color: var(--accent); font-weight: bold; }
        .providers-wall {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }
        .provider-block {
            flex: 1;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-size: 13px;
        }
        .pb-1 { background: var(--primary); color: var(--bg-main); }
        .pb-2 { background: var(--bg-elevated); color: var(--primary); border: 1px solid var(--primary); }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--primary);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); float: right; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 15px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            text-align: center;
            padding: 20px;
            background: var(--bg-elevated);
            border-radius: 12px;
            margin-top: 30px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--primary);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .navigator a {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .navigator a i { font-size: 18px; margin-bottom: 4px; }
        footer {
            background: var(--bg-main);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-default);
        }
        footer div.contact-row {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        footer div.links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        footer div.copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }