:root {
            --primary: #D4AF37;
            --primary-light: #F1D279;
            --primary-dark: #AA8A1F;
            --secondary: #00A86B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-overlay: #1F2630;
            --bg-nav: #080A0D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #6C757D;
            --text-on-brand: #000000;
            --border-subtle: #2D343E;
            --border-strong: #404956;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { 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;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-nav);
            height: 60px;
            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-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-auth { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-on-brand); }
        .btn:hover { opacity: 0.8; }

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

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-overlay));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-label { color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 28px; color: var(--primary); font-weight: 900; text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }

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

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 1.2rem; 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: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-image { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-image img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }

        .payments-section { background: var(--bg-surface); margin: 25px 0; padding: 25px 15px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 20px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }

        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guideline-item { background: var(--bg-overlay); padding: 20px; border-radius: 12px; }
        .guideline-item h2 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
        .guideline-item p { font-size: 0.9rem; color: var(--text-secondary); text-align: justify; }

        .marquee-container { background: var(--bg-surface); padding: 15px 0; margin: 25px 0; overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; width: max-content; }
        .winner-tag { background: var(--bg-overlay); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-subtle); display: flex; gap: 10px; font-size: 0.8rem; }
        .winner-name { color: var(--primary); font-weight: bold; }
        .winner-amount { color: var(--secondary); font-family: var(--font-numbers); }

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

        .reviews-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-overlay); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-user-info h3 { font-size: 0.95rem; }
        .review-rating { color: #FFC107; font-size: 0.75rem; }
        .review-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
        .review-text { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }

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

        .safety-section { margin: 15px; padding: 25px; background: linear-gradient(to bottom, var(--bg-overlay), var(--bg-main)); border-radius: 15px; text-align: center; border: 1px solid var(--border-subtle); }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 30px; }
        .safety-text { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; line-height: 36px; font-weight: bold; font-size: 14px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 0.75rem; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover, .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-nav); padding: 40px 15px 100px; border-top: 2px solid var(--primary-dark); }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { font-size: 20px; color: var(--text-secondary); transition: 0.3s; }
        .footer-contact a:hover { color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 0.85rem; }
        .footer-links a:hover { color: var(--text-primary); }
        .footer-copy { text-align: center; font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }