:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC2;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-surface-variant: #2B2F36;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3772FF;
            --border-light: #2F333A;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header { 
            background-color: var(--bg-surface); 
            padding: 0 15px; 
            height: 60px; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 1px solid var(--border-light); 
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: cover; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 6px 16px; 
            border-radius: 4px; 
            font-size: 14px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            transition: 0.3s; 
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .banner-container { margin: 15px 0; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 12px; }

        .jackpot-section { 
            background: linear-gradient(135deg, var(--bg-surface-variant), var(--bg-surface)); 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            border: 2px solid var(--primary); 
            margin-bottom: 20px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 18px; color: var(--text-secondary); margin-bottom: 5px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: 32px; 
            font-weight: 800; 
            color: var(--primary); 
            display: block;
        }

        .intro-card { 
            background: var(--bg-surface); 
            padding: 25px; 
            border-radius: 12px; 
            margin-bottom: 30px; 
            border-left: 5px solid var(--primary); 
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { font-size: 22px; margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 22px; background: var(--primary); display: inline-block; }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-light); 
            transition: 0.3s; 
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-licenses { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .pay-item { 
            background: var(--bg-surface-variant); 
            padding: 15px 5px; 
            border-radius: 8px; 
            text-align: center; 
            font-size: 12px; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
        }
        .pay-item i { font-size: 20px; color: var(--primary); }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .guide-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-light); 
        }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .winner-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 30px; 
        }
        .winner-table th, .winner-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-light); font-size: 13px; }
        .winner-table th { background: var(--bg-surface-variant); color: var(--primary); }
        .winner-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            font-size: 14px; 
            background: var(--bg-surface-variant); 
            border: 1px solid var(--border-medium); 
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-light); 
        }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 24px; color: var(--primary); }
        .comment-user span { font-weight: 600; }
        .comment-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-container { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            border: 1px solid var(--border-light); 
        }
        .faq-question { 
            padding: 15px; 
            font-weight: 600; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            color: var(--primary); 
        }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer { 
            background: var(--bg-surface-variant); 
            padding: 25px; 
            border-radius: 12px; 
            text-align: center; 
            margin-bottom: 30px; 
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--accent); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-link { color: var(--primary); font-size: 13px; text-decoration: underline; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            height: 65px; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            border-top: 1px solid var(--border-light); 
            z-index: 2000; 
            padding: 0 10px;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 15px 100px; 
            border-top: 1px solid var(--border-light); 
            text-align: center; 
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        .footer-contact a { font-size: 14px; color: var(--text-secondary); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { color: var(--text-disabled); font-size: 13px; border-top: 1px solid var(--border-light); padding-top: 20px; }

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: repeat(2, 1fr); }
        }