:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #00C853;
            --accent: #FF3D00;
            --bg-default: #0A0B0D;
            --bg-paper: #16191E;
            --bg-elevated: #23272E;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --border-subtle: #2D323B;
            --win: #00FF41;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-paper);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; letter-spacing: 1px; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary); color: var(--bg-default); }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box {
            margin: 15px;
            padding: 20px;
            background: linear-gradient(135deg, #1e2229 0%, #0a0b0d 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-size: 0.875rem; color: var(--primary); margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 2.25rem;
            color: var(--win);
            text-shadow: 0 0 10px rgba(0,255,65,0.4);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-paper); border-radius: 12px; }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary); line-height: 1.3; }
        .intro-card p { font-size: 0.875rem; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 1.125rem; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-paper); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
        .payment-section { margin: 30px 15px; padding: 20px; background: var(--bg-paper); border-radius: 12px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-grid i { font-size: 24px; color: var(--text-secondary); }
        .guidelines { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { padding: 15px; background: var(--bg-paper); border-radius: 10px; border-left: 3px solid var(--secondary); }
        .guide-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-paper); margin: 30px 0; padding: 10px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-track { display: flex; white-space: nowrap; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-subtle); }
        .winner-pill strong { color: var(--win); margin: 0 5px; font-family: 'Oswald', sans-serif; }
        .provider-wall { padding: 20px 15px; background: var(--bg-default); display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-tag { color: var(--text-hint); font-weight: 700; font-size: 0.75rem; opacity: 0.6; }
        .reviews-section { padding: 0 15px; margin: 30px 0; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-secondary); background: var(--bg-elevated); padding: 10px; border-radius: 50%; }
        .stars { color: var(--primary); font-size: 0.75rem; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-paper); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 0.9rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: var(--bg-paper); border-radius: 12px; border: 1px dashed var(--accent); text-align: center; }
        .security-section h2 { font-size: 1rem; color: var(--accent); margin-bottom: 10px; }
        .security-section p { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-paper); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 0.65rem; font-weight: 500; }
        footer { background: var(--bg-paper); padding: 30px 15px; border-top: 1px solid var(--border-subtle); }
        .footer-row { margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
        .footer-links a { font-size: 0.75rem; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 0.7rem; color: var(--text-hint); border-top: 1px solid var(--border-subtle); pt: 20px; }