:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF4500;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-1: #0A0A0A;
            --bg-2: #141414;
            --bg-3: #1E1E1E;
            --text-1: #FFFFFF;
            --text-2: #A0A0A0;
            --text-muted: #666666;
            --border: #2D2D2D;
            --radius: 12px;
        }

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

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            background: var(--bg-2);
            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);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-1); text-transform: uppercase; letter-spacing: 1px; }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--grad-gold); 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-box {
            background: var(--bg-2);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--secondary);
            background-image: radial-gradient(circle at top, #2a2a10, transparent);
        }
        .jackpot-title { color: var(--text-2); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            font-weight: 900;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .platform-intro { padding: 25px 15px; text-align: center; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 15px; line-height: 1.3; }
        .platform-intro p { color: var(--text-2); font-size: 14px; }

        .section-title { padding: 15px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .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; padding: 0 15px 20px; }
        .game-card { background: var(--bg-2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { background: var(--bg-3); margin: 15px; padding: 20px; border-radius: var(--radius); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-2); }

        .guides-section { padding: 15px; }
        .guide-card { background: var(--bg-2); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; border-left: 3px solid var(--primary); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--text-1); }
        .guide-card p { font-size: 13px; color: var(--text-2); }

        .marquee-box { background: #000; padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; }
        .lottery-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 20px; font-size: 12px; color: var(--text-2); }
        .lottery-item b { color: var(--primary); }
        .lottery-item span { color: #22C55E; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-2); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--border); font-weight: 600; font-size: 13px; color: var(--secondary); }

        .comment-section { padding: 15px; }
        .comment-card { background: var(--bg-3); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--text-muted); }
        .comment-info h3 { font-size: 14px; color: var(--text-1); }
        .stars { color: #FACC15; font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-2); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border); }
        .faq-item h2 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-2); }

        .security-section { padding: 25px 15px; text-align: center; background: #050505; border-top: 1px solid var(--border); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .security-text a { color: var(--secondary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-2); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-1); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        footer .contact-row a { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 5px; border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .links-grid a { font-size: 13px; color: var(--text-muted); }
        footer .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--divider); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .platform-intro h1 { font-size: 32px; }
        }