:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #FF3E3E;
            --accent: #00E5FF;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-card: #1F1F22;
            --bg-modal: #121214;
            --bg-elevated: #28282C;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-brand: #FFD700;
            --border-default: #2D2D30;
            --border-active: #FFD700;
            --success: #22C55E;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            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; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-img { width: 25px; height: 25px; object-fit: contain; }
        .platform-name { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-card), #2a2a2d);
            margin: 20px 0;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: var(--primary); font-weight: 900; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { background: var(--bg-surface); padding: 24px; border-radius: var(--radius); margin-bottom: 24px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .section-title { font-size: 18px; margin: 24px 0 16px; 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: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); 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: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 20px; border-radius: var(--radius); }
        .payment-item { background: #fff; padding: 8px; border-radius: 4px; display: flex; justify-content: center; align-items: center; height: 40px; }
        .payment-item img { max-width: 100%; max-height: 100%; filter: grayscale(1); transition: filter 0.3s; }
        .payment-item:hover img { filter: grayscale(0); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border-left: 3px solid var(--primary); }
        .guide-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .marquee-container { background: var(--bg-surface); padding: 15px 0; overflow: hidden; margin: 24px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 20px; }
        .win-item { background: var(--bg-elevated); padding: 8px 15px; border-radius: 30px; white-space: nowrap; font-size: 12px; display: flex; gap: 10px; align-items: center; border: 1px solid var(--border-default); }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--success); font-family: 'Roboto Mono', monospace; }
        .providers-wall { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-card); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: var(--radius); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-user-info h4 { font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
        .review-body { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: var(--radius); padding: 16px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { background: var(--bg-surface); padding: 24px; border-radius: var(--radius); text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin: 15px 0; }
        .security-badges i { font-size: 24px; color: var(--text-muted); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        footer { background: var(--bg-surface); padding: 40px 16px 100px; border-top: 1px solid var(--border-default); }
        .footer-row { margin-bottom: 30px; }
        .footer-title { color: var(--primary); font-size: 16px; margin-bottom: 15px; text-transform: uppercase; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; }
        .contact-links a { color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 6px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }