:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --accent: #E63946;
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9E076 50%, #996515 100%);
            --bg-default: #0A0B0D;
            --bg-paper: #14161A;
            --bg-elevated: #1E2126;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --border-default: #2D3748;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-primary); }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; }
        .header-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin: 16px 0;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-pool {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
            margin-bottom: 24px;
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'JetBrains Mono', monospace; }
        .intro-section { margin-bottom: 32px; text-align: center; }
        h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.25; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 24px 0 16px; border-left: 4px solid var(--primary); padding-left: 12px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card {
            background: var(--bg-paper);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
            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 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .article-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
        .article-card {
            display: flex;
            background: var(--bg-paper);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 12px; flex: 1; }
        .article-info h3 { font-size: 15px; margin-bottom: 4px; color: var(--primary-light); }
        .article-info p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
        .payment-item {
            background: var(--bg-elevated);
            padding: 12px 4px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 6px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .winners-box {
            background: var(--bg-paper);
            border-radius: 12px;
            padding: 16px;
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 32px;
            border: 1px solid var(--border-default);
        }
        .winners-scroll { animation: scrollUp 40s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-elevated); font-size: 13px; }
        .winner-row .amount { color: var(--primary); font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
        .provider-block { background: var(--bg-elevated); padding: 16px; border-radius: 10px; text-align: center; border: 1px solid var(--border-default); font-weight: 600; color: var(--primary-light); }
        .reviews-container { margin-bottom: 32px; }
        .review-card { background: var(--bg-paper); padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-meta h4 { font-size: 14px; }
        .stars { color: #FFD600; font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 32px; }
        .faq-item { background: var(--bg-paper); padding: 16px; border-radius: 10px; margin-bottom: 12px; border-left: 3px solid var(--primary); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary-light); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { background: var(--bg-elevated); padding: 24px; border-radius: 12px; text-align: center; margin-bottom: 32px; border: 1px solid var(--accent); }
        .responsible-gaming i { font-size: 32px; color: var(--accent); margin-bottom: 12px; }
        .responsible-gaming p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
        .age-badge { display: inline-block; background: var(--accent); color: white; padding: 2px 8px; border-radius: 4px; font-weight: bold; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active, .nav-item:hover { color: var(--primary); }
        footer { background: var(--bg-paper); padding: 32px 16px 80px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; text-decoration: none; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-elevated); padding-top: 16px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
        }