:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-accent: #00C853;
            --trust-blue: #1A237E;
            --bg-main: #0B0B0C;
            --bg-surface: #161618;
            --bg-elevated: #222224;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A5;
            --text-muted: #6B6B70;
            --border-default: #2D2D30;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        button { cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; font-weight: 600; border-radius: 8px; transition: 0.3s; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        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: 1000;
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); padding: 8px 15px; font-size: 14px; }
        .btn-register { background: var(--primary-gold); color: var(--bg-main); padding: 8px 15px; font-size: 14px; }

        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; margin-top: 10px; border-radius: var(--radius); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-elevated), #2a1b02);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
        }
        .jackpot-title { color: var(--primary-gold-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #FFFFFF; text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); font-family: 'Roboto', sans-serif; }

        .intro-card { padding: 25px; background: var(--bg-surface); border-radius: var(--radius); margin-bottom: 25px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 22px; margin-bottom: 12px; color: var(--primary-gold); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-default); padding-bottom: 8px; }
        .section-title i { color: var(--primary-gold); }

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

        .payments-licenses { background: var(--bg-elevated); padding: 20px; border-radius: var(--radius); margin: 30px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payments-licenses i { font-size: 28px; color: var(--text-secondary); opacity: 0.8; }
        .trust-seal { font-size: 12px; font-weight: bold; border: 1px solid var(--text-muted); padding: 4px 8px; border-radius: 4px; color: var(--text-muted); }

        .seo-guidelines { margin: 30px 0; display: grid; gap: 20px; }
        .guideline-item { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .guideline-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary-gold-light); }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); padding: 10px 0; margin: 25px 0; overflow: hidden; position: relative; 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; }
        .win-record { white-space: nowrap; font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
        .win-record span { color: var(--secondary-accent); font-weight: 700; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; padding: 20px; background: var(--bg-surface); border-radius: var(--radius); margin: 25px 0; }
        .provider-name { font-size: 14px; font-weight: 700; color: var(--text-muted); }

        .reviews-grid { display: grid; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: var(--primary-gold); }
        .user-meta { display: flex; flex-direction: column; }
        .user-name { font-weight: 700; font-size: 15px; }
        .review-stars { color: #FFD600; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-elevated); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px 20px; font-weight: 700; font-size: 15px; cursor: pointer; color: var(--primary-gold-light); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 20px 15px; font-size: 14px; color: var(--text-secondary); }

        .safety-section { background: #000; padding: 25px; border-radius: var(--radius); border: 1px dashed var(--border-default); text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary-accent); }
        .safety-text { font-size: 13px; color: var(--text-muted); }
        .age-limit { display: inline-block; border: 2px solid #FF5252; color: #FF5252; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin: 10px 0; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 70px; 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: 5px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }

        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .footer-contact-links { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
        .footer-contact-links a { color: var(--primary-gold); font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; text-align: center; }
        .footer-grid a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
        .footer-copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }