:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #14171C;
            --bg-card: #1E2229;
            --brand-gold: #FFD700;
            --dark-gold: #B8860B;
            --accent-red: #D40000;
            --luxury-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --border-default: #2D3748;
            --font-main: 'Montserrat', sans-serif;
            --font-sec: 'Inter', sans-serif;
            --font-display: 'Archivo Black', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background: var(--bg-secondary);
            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-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
        }
        .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--luxury-gradient); color: var(--bg-primary); }
        main { padding-bottom: 80px; }
        .hero { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--dark-gold);
        }
        .jackpot-label { color: var(--brand-gold); font-size: 14px; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 32px; color: var(--text-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 32px; font-family: var(--font-display); color: var(--brand-gold); line-height: 1.2; margin-bottom: 12px; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 24px; font-family: var(--font-display); text-transform: uppercase; border-left: 4px solid var(--brand-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-image-wrapper { aspect-ratio: 1/1; width: 100%; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-section { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: var(--bg-card); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); text-decoration: none; }
        .article-img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 5px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: var(--bg-secondary); }
        .trust-item { text-align: center; }
        .trust-item i { font-size: 24px; color: var(--brand-gold); margin-bottom: 5px; }
        .trust-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .winner-section { background: var(--bg-card); margin: 15px; border-radius: 12px; padding: 15px; border: 1px solid var(--border-default); }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
        .winner-row span:nth-child(1) { color: var(--text-secondary); }
        .winner-row span:nth-child(2) { color: var(--brand-gold); font-weight: 600; }
        .winner-row span:nth-child(3) { color: var(--text-primary); }
        .providers-section { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-secondary); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); font-weight: 700; color: var(--text-secondary); }
        .review-section { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-gold); }
        .review-user h4 { font-size: 14px; }
        .stars { color: var(--brand-gold); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-secondary); }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { padding: 30px 15px; text-align: center; background: var(--bg-secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-gold); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-link { color: var(--brand-gold); text-decoration: underline; font-size: 13px; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-secondary); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; color: var(--text-secondary); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-section { display: grid; grid-template-columns: 1fr 1fr; }
            .providers-section { grid-template-columns: repeat(4, 1fr); }
        }