:root {
            --primary-gold: #FFD700;
            --primary-gold-dark: #B8860B;
            --accent-red: #FF0000;
            --main-bg: #0A0A0B;
            --surface-bg: #16181D;
            --elevated-bg: #1F232B;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-brand: #FFD700;
            --border-default: #2D3748;
            --font-display: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--main-bg); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }

        header {
            background: var(--surface-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        header .login-btn { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        header .register-btn { background: var(--primary-gold); color: #000; }

        main { padding-bottom: 80px; }

        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(180deg, #1f232b 0%, #111 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { 
            font-family: 'Oswald', sans-serif; 
            font-size: 32px; 
            color: var(--primary-gold); 
            font-weight: 800;
            margin-top: 5px;
        }

        .intro-card { margin: 15px; padding: 20px; background: var(--surface-bg); border-radius: 15px; }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; font-family: var(--font-display); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid var(--primary-gold); margin-left: 15px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface-bg); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .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; }

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

        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--surface-bg); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .winners-box { margin: 25px 15px; background: var(--surface-bg); border-radius: 12px; padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-row span:last-child { color: var(--primary-gold); font-weight: bold; }

        .providers-wall { margin: 25px 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-btn { background: linear-gradient(45deg, #B8860B, #FFD700); color: #000; padding: 12px; text-align: center; border-radius: 6px; font-weight: bold; font-size: 13px; }

        .comment-container { padding: 0 15px; }
        .comment-card { background: var(--elevated-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--primary-gold); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--text-secondary); }
        .comment-header .user-info { flex: 1; }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--surface-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary-gold); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section { margin: 25px 15px; padding: 20px; background: #000; border: 1px solid var(--accent-red); border-radius: 12px; text-align: center; }
        .security-section h2 { color: var(--accent-red); font-size: 18px; margin-bottom: 15px; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-top: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--surface-background, #16181D);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
            backdrop-filter: blur(10px);
        }
        .navigator a { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .navigator a i { font-size: 20px; margin-bottom: 4px; }
        .navigator a:hover { color: var(--primary-gold); }

        footer { background: #050505; padding: 40px 15px 100px; color: var(--text-secondary); border-top: 1px solid var(--border-default); }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        footer .contact-row a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        footer .links-grid a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        footer .copyright { text-align: center; font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }