:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E11D48;
            --accent: #00FFCC;
            --bg-main: #05070A;
            --bg-surface: #121826;
            --bg-elevated: #1E293B;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-gold: #FDE047;
            --border-default: #334155;
            --border-subtle: #1E293B;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-gold); text-transform: uppercase; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            margin: 20px 0;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 2px solid var(--primary-variant);
        }
        .jackpot-label { color: var(--text-gold); font-size: 14px; 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 15px rgba(255, 215, 0, 0.4);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-gold); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 1.25rem; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .game-img-wrapper { aspect-ratio: 1/1; background: #000; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--text-secondary); }
        .payment-license {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: var(--radius);
            margin: 30px 0;
            text-align: center;
        }
        .icon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .icon-grid i { font-size: 24px; color: var(--text-secondary); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-subtle); }
        .guide-item h2 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container {
            background: #000;
            padding: 10px 0;
            margin: 30px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-tag { display: inline-block; margin: 0 20px; font-size: 13px; }
        .win-tag span { color: var(--accent); font-weight: 700; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 20px;
            background: var(--bg-surface);
            border-radius: var(--radius);
        }
        .provider-pill { padding: 6px 14px; background: var(--bg-elevated); border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--border-subtle); color: var(--text-gold); }
        .faq-a { padding: 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-elevated); border-radius: var(--radius); margin: 30px 0; }
        .security-icons { display: flex; justify-content: center; gap: 25px; margin-bottom: 15px; font-size: 24px; color: var(--semantic-success); }
        .security-text { font-size: 12px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: var(--primary); transform: translateY(-5px); }
        .nav-item:nth-child(3) i { background: var(--primary); color: #000; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3); }
        footer { background: #000; padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--border-subtle); }