:root {
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-main: #0B0E14;
            --bg-sec: #161B22;
            --bg-tert: #1C2128;
            --text-main: #F8FAFC;
            --text-sec: #94A3B8;
            --success: #10B981;
            --border: #30363D;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-sec);
            border-bottom: 1px solid var(--border);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
        .btn-reg { background: var(--gold-grad); color: var(--bg-main); }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            border: 1px solid var(--border);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-sec);
            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-title { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: 18px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: #00FF7F;
            margin: 10px 0;
        }
        .intro-card {
            background: var(--bg-tert);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { font-size: 14px; color: var(--text-sec); }
        .section-title { font-family: 'Oswald', sans-serif; font-size: 22px; margin: 25px 0 15px; border-bottom: 2px solid var(--primary); display: inline-block; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card {
            background: var(--bg-sec);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border);
            transition: transform 0.2s;
        }
        .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: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .pay-item {
            background: var(--bg-sec);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            border: 1px solid var(--border);
        }
        .pay-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary); }
        .guide-container { display: grid; gap: 15px; }
        .guide-item { background: var(--bg-tert); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--accent); }
        .winner-list { background: var(--bg-sec); border-radius: 12px; padding: 15px; }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }
        .winner-item:last-child { border: none; }
        .winner-val { color: #00FF7F; font-weight: bold; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
        .provider-btn {
            flex: 1 1 calc(50% - 10px);
            padding: 12px;
            text-align: center;
            background: linear-gradient(45deg, #1C2128, #30363D);
            border-radius: 6px;
            font-weight: 700;
            color: var(--primary);
            font-size: 14px;
        }
        .review-card {
            background: var(--bg-tert);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-sec); }
        .stars { color: var(--accent); font-size: 12px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .security-box {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--success);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .security-box h2 { color: var(--success); font-size: 18px; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-sec);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-sec);
            font-size: 11px;
        }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item:hover { color: var(--primary); }
        footer {
            background: var(--bg-sec);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: left;
            margin: 20px 0;
        }
        .footer-links a { color: var(--text-sec); text-decoration: none; font-size: 13px; display: block; margin-bottom: 5px; }
        .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .contact-row a { color: var(--primary); text-decoration: none; font-size: 14px; font-weight: 600; }
        .copyright { font-size: 12px; color: var(--text-sec); margin-top: 20px; }