:root {
            --primary: #D4AF37;
            --primary-variant: #F2D472;
            --secondary: #B8860B;
            --accent: #FF3E3E;
            --bg-default: #050505;
            --bg-paper: #121212;
            --bg-elevated: #1E1E1E;
            --bg-glass: rgba(255, 255, 255, 0.05);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-brand: #D4AF37;
            --success: #00C853;
            --error: #FF5252;
            --border-low: #222222;
            --border-high: #D4AF37;
            --radius-lg: 16px;
            --radius-md: 12px;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-interface: 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            height: 60px;
            background: var(--bg-paper);
            border-bottom: 1px solid var(--border-low);
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 15px;
        }
        .brand { display: flex; align-items: center; gap: 8px; }
        .brand img { width: 25px; height: 25px; object-fit: contain; }
        .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-actions { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-low); }
        .btn-register { background: var(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
            margin: 20px 0;
            padding: 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid var(--secondary);
        }
        .jackpot-label { color: var(--primary); font-weight: 900; font-family: var(--font-display); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-primary); text-shadow: 0 0 15px rgba(212,175,55,0.5); }
        .intro-card { background: var(--bg-paper); padding: 25px; border-radius: var(--radius-lg); margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-size: 20px; margin: 30px 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: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-elevated); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; 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); font-family: var(--font-interface); }
        .payment-methods { background: var(--bg-glass); padding: 20px; border-radius: var(--radius-lg); display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .payment-methods i { font-size: 30px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-paper); padding: 20px; border-radius: var(--radius-md); border-top: 2px solid var(--secondary); }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-elevated); padding: 15px 0; overflow: hidden; position: relative; border-y: 1px solid var(--border-low); }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { background: var(--bg-glass); margin: 0 10px; padding: 10px 20px; border-radius: 30px; display: flex; gap: 15px; align-items: center; border: 1px solid var(--border-low); }
        .winner-pill span { font-size: 13px; }
        .winner-name { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
        .provider-tag { background: var(--bg-elevated); padding: 8px 15px; border-radius: 5px; font-size: 13px; border: 1px solid var(--border-low); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-paper); padding: 20px; border-radius: var(--radius-md); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--primary); }
        .review-info h3 { font-size: 15px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 12px; color: var(--text-hint); }
        .review-content { font-size: 14px; color: var(--text-secondary); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .safety-section { background: rgba(0, 123, 255, 0.05); border: 1px dashed #007BFF; padding: 25px; border-radius: var(--radius-lg); text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #007BFF; }
        .safety-section h2 { font-size: 20px; margin-bottom: 10px; }
        .safety-section p { font-size: 13px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-paper); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-low); z-index: 1000; }
        .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:nth-child(3) { color: var(--primary); margin-top: -30px; background: var(--bg-paper); width: 60px; height: 60px; border-radius: 50%; justify-content: center; border-top: 1px solid var(--border-low); }
        footer { padding: 40px 15px 100px; background: var(--bg-default); border-top: 1px solid var(--border-low); }
        .footer-social { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; }
        .footer-social a { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-hint); border-top: 1px solid var(--border-low); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .reviews-grid, .guidelines { grid-template-columns: 1fr 1fr; }
        }