:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #E63946;
            --accent: #00A86B;
            --luxury-gold: #B8860B;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --bg-contrast: #1A1A1B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --border-subtle: #262626;
            --font-display: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numeric: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background-color: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .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; font-family: var(--font-display); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            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-default); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-contrast));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--luxury-gold);
        }
        .jackpot-title { font-family: var(--font-display); font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 36px; color: var(--primary-variant); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; }
        .intro-card h1 { font-family: var(--font-display); font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { margin: 25px 15px 15px; font-family: var(--font-display); font-size: 20px; 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: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .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: 12px; color: var(--text-muted); }
        .payment-methods { margin: 30px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .payment-methods i { font-size: 32px; color: var(--text-secondary); }
        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guideline-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .guideline-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary-variant); }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-contrast); padding: 10px 0; margin: 30px 0; overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; font-size: 13px; color: var(--text-secondary); }
        .winner-tag strong { color: var(--accent); }
        .providers-wall { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-pill { padding: 5px 15px; background: var(--bg-elevated); border-radius: 20px; font-size: 13px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .reviews-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-meta h3 { font-size: 15px; }
        .review-stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary-variant); font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { margin: 40px 15px; padding: 25px; background: #1a0a0a; border: 1px solid var(--secondary); border-radius: 15px; text-align: center; }
        .responsible-gaming h2 { color: var(--secondary); margin-bottom: 10px; font-size: 20px; }
        .responsible-gaming p { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }
        .responsible-badges { display: flex; justify-content: center; gap: 20px; font-size: 24px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; align-items: center; z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-contrast); padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); pt-20px; padding-top: 20px; }