:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #AA8A2E;
            --secondary: #00A86B;
            --accent: #FF4500;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-overlay: #1F1F23;
            --bg-elevated: #252529;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-brand: #D4AF37;
            --border-default: #27272A;
            --border-strong: #3F3F46;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 16px; width: 100%; max-width: 1200px; margin: 0 auto; }
        
        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background: var(--primary); color: #000; }
        
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-section {
            background: linear-gradient(to bottom, #1a1a1c, #0a0a0b);
            padding: 20px;
            text-align: center;
            border-radius: var(--radius);
            margin: 16px;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); font-family: 'Montserrat', sans-serif; }

        .presentation-card { padding: 24px 16px; background: var(--bg-surface); margin-bottom: 16px; }
        .presentation-card h1 { font-size: 22px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .presentation-card p { color: var(--text-secondary); font-size: 14px; }

        .section-title { font-size: 18px; margin: 24px 16px 16px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

        .payments-licenses { padding: 24px 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; justify-items: center; background: var(--bg-overlay); }
        .payments-licenses i { font-size: 24px; color: var(--text-secondary); opacity: 0.8; }

        .guidelines { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
        .guide-item { background: var(--bg-surface); padding: 16px; border-radius: var(--radius); }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .winners-marquee { background: var(--bg-surface); padding: 12px 0; margin: 24px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { white-space: nowrap; font-size: 13px; display: flex; gap: 8px; color: var(--text-secondary); }
        .winner-pill strong { color: var(--secondary); }

        .providers-wall { padding: 24px 16px; background: var(--bg-overlay); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-elevated); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .reviews { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border-left: 3px solid var(--primary); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 20px; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 13px; color: var(--text-secondary); }

        .faq-section { padding: 16px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: var(--radius); padding: 16px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-light); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { padding: 32px 16px; text-align: center; background: var(--bg-overlay); border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: var(--text-muted); }
        .age-limit { display: inline-block; border: 2px solid var(--text-muted); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 15px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); 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.active { color: var(--primary); }

        footer { background: var(--bg-main); padding: 40px 16px 20px; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; text-align: center; }
        .contact-links { display: flex; justify-content: center; gap: 15px; }
        .contact-links a { width: 40px; height: 40px; background: var(--bg-surface); display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border-default); }
        
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-grid a { font-size: 12px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }