:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #1E1E1E;
            --accent: #FF0000;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #F9E076 100%);
            --bg-main: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --win-color: #00E676;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--secondary);
            padding: 10px 15px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            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(--secondary); }
        .btn-register { background: var(--gold-gradient); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-surface);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--text-primary); text-shadow: 0 0 10px var(--primary); }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-elevated); border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-variant); }
        .intro-card p { font-size: 0.95rem; color: var(--text-secondary); }

        .section-title { margin: 25px 15px 15px; font-size: 1.25rem; 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; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--secondary); transition: 0.3s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-secondary); display: block; margin-top: 4px; }

        .payments-licenses { background: var(--bg-surface); padding: 25px 15px; margin: 30px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; }

        .guidelines { padding: 20px 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }

        .win-ticker { background: #000; padding: 10px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid var(--secondary); border-bottom: 1px solid var(--secondary); }
        .ticker-wrapper { display: flex; animation: ticker 40s linear infinite; gap: 30px; white-space: nowrap; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
        .win-user { color: var(--primary); font-weight: bold; }
        .win-amount { color: var(--win-color); font-weight: bold; }

        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: var(--secondary); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; border: 1px solid var(--bg-elevated); }

        .reviews { padding: 20px 15px; display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--secondary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-name { font-weight: 600; font-size: 0.9rem; }
        .review-stars { color: #FFB300; font-size: 0.75rem; }
        .review-content { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }

        .faq { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-elevated); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; border-bottom: 1px solid var(--secondary); }
        .faq-answer { padding: 15px; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-surface); border-top: 2px solid var(--secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: var(--win-color); }
        .security-text { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 4px 10px; border: 1px solid var(--accent); color: var(--accent); border-radius: 4px; font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border-top: 1px solid var(--secondary);
            z-index: 2000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }

        footer { padding: 40px 15px 30px; background: #000; text-align: center; border-top: 1px solid var(--secondary); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
        .copyright { font-size: 0.75rem; color: var(--text-secondary); padding-top: 20px; border-top: 1px solid var(--secondary); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews { grid-template-columns: repeat(2, 1fr); }
            .banner { aspect-ratio: 4/1; }
        }