:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --accent-red: #E63946;
            --accent-blue: #1D4ED8;
            --main-bg: #0B0C10;
            --surface-bg: #1F2833;
            --elevated-bg: #2C3531;
            --overlay-bg: rgba(0, 0, 0, 0.85);
            --primary-text: #FFFFFF;
            --secondary-text: #C5C6C7;
            --muted-text: #898E91;
            --brand-text: #D4AF37;
            --inverse-text: #0B0C10;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --default-border: #45A29E;
            --subtle-border: #1F2833;
            --active-border: #D4AF37;
            --heading-font: 'Montserrat', sans-serif;
            --body-font: 'Inter', sans-serif;
            --accent-font: 'Playfair Display', serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: var(--body-font);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: var(--heading-font);
            line-height: 1.2;
            color: var(--primary-text);
        }

        h1 { font-size: 32px; font-weight: 800; text-align: center; margin: 20px 0; color: var(--primary-gold); }
        h2 { font-size: 24px; font-weight: 700; margin-bottom: 15px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        h3 { font-size: 16px; font-weight: 600; margin: 10px 0; }

        a { text-decoration: none; color: inherit; }

        header {
            background-color: var(--surface-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-gold-dark);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 5px;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: transform 0.2s;
        }

        .btn:active { transform: scale(0.95); }

        .btn-login { background-color: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background-color: var(--primary-gold); color: var(--inverse-text); }

        main { padding-bottom: 80px; }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: linear-gradient(135deg, var(--elevated-bg), var(--main-bg));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }

        .jackpot-label {
            font-family: var(--accent-font);
            color: var(--primary-gold);
            font-size: 20px;
            margin-bottom: 10px;
            font-style: italic;
        }

        .jackpot-amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-text);
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 10px var(--primary-gold);
        }

        .section-padding { padding: 20px 15px; }

        .intro-text {
            color: var(--secondary-text);
            text-align: center;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 15px;
        }

        .game-card {
            background-color: var(--surface-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--subtle-border);
            transition: border-color 0.3s;
        }

        .game-card:hover { border-color: var(--primary-gold); }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-title-box { padding: 10px; text-align: center; }

        .article-list { display: flex; flex-direction: column; gap: 15px; }

        .article-card {
            display: flex;
            background-color: var(--surface-bg);
            border-radius: 10px;
            overflow: hidden;
            gap: 12px;
            padding: 10px;
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .article-content { flex: 1; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--primary-gold-light); }
        .article-content p { font-size: 12px; color: var(--muted-text); line-height: 1.4; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            text-align: center;
        }

        .payment-item {
            background-color: var(--elevated-bg);
            padding: 10px 5px;
            border-radius: 8px;
            font-size: 10px;
        }

        .payment-item i { font-size: 18px; margin-bottom: 5px; color: var(--primary-gold); display: block; }

        .win-records {
            background-color: var(--surface-bg);
            border-radius: 12px;
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }

        .win-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--subtle-border);
            font-size: 13px;
        }

        .win-user { color: var(--primary-gold-light); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .provider-block {
            background-color: var(--elevated-bg);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            color: var(--secondary-text);
            border: 1px solid var(--subtle-border);
        }

        .review-card {
            background-color: var(--surface-bg);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 3px solid var(--accent-blue);
        }

        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--muted-text); }
        .review-user { font-weight: 600; font-size: 15px; }
        .star-rating { color: var(--warning); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--secondary-text); font-style: italic; }
        .review-date { font-size: 11px; color: var(--muted-text); margin-top: 5px; }

        .faq-item { margin-bottom: 15px; background-color: var(--surface-bg); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; border-bottom: 1px solid var(--subtle-border); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--secondary-text); }

        .security-section {
            background-color: var(--elevated-bg);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 20px 15px;
        }

        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .age-limit { font-weight: 800; font-size: 20px; border: 2px solid var(--accent-red); color: var(--accent-red); display: inline-block; width: 40px; height: 40px; border-radius: 50%; line-height: 36px; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary-gold-dark);
            z-index: 1001;
        }

        .nav-item { text-align: center; color: var(--secondary-text); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; color: var(--primary-gold); }

        footer {
            background-color: var(--main-bg);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--subtle-border);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .footer-links a { font-size: 13px; color: var(--muted-text); }
        .copyright { text-align: center; font-size: 12px; color: var(--muted-text); }