:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --casino-green: #008751;
            --action-red: #E63946;
            --bg-base: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1F2630;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #707A8A;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2D3748;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-actions { 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(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: #000; }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, #008751 0%, #004d2e 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            border: 1px solid var(--secondary-gold);
        }
        .jackpot-title { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary-gold); margin-bottom: 5px; }
        .jackpot-amount { font-size: 2.2rem; font-family: var(--font-heading); font-weight: 900; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

        .intro-card { margin: 16px; padding: 20px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }

        .section-title { padding: 0 16px; margin-top: 24px; margin-bottom: 16px; font-size: 1.25rem; border-left: 3px solid var(--action-red); margin-left: 16px; }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }
        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid #2D3748;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-muted); display: block; }

        .payment-methods {
            background: var(--bg-surface);
            padding: 20px 16px;
            margin: 24px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .payment-methods i { font-size: 30px; color: var(--text-muted); opacity: 0.8; }

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

        .winners-marquee {
            background: var(--bg-surface);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 24px 0;
            border-top: 1px solid var(--bg-elevated);
            border-bottom: 1px solid var(--bg-elevated);
        }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .win-tag { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid #333; }
        .win-tag strong { color: var(--casino-green); margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-btn { background: var(--bg-elevated); padding: 8px 12px; border-radius: 4px; font-size: 0.8rem; color: var(--text-secondary); border: 1px solid #2D3748; }

        .comments-section { padding: 0 16px; display: grid; gap: 16px; }
        .comment-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid #2D3748; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 24px; color: var(--primary-gold); }
        .stars { color: var(--secondary-gold); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; }

        .faq-section { padding: 0 16px; margin: 30px 0; }
        .faq-item { margin-bottom: 15px; background: var(--bg-elevated); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 1rem; color: var(--text-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }

        .security-section { padding: 20px 16px; text-align: center; background: #000; color: var(--text-muted); font-size: 12px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 10px; font-size: 20px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-elevated);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1001;
            border-top: 1px solid #2D3748;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }

        footer { background: var(--bg-surface); padding: 30px 16px; border-top: 1px solid #2D3748; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid #2D3748; padding-top: 20px; }