:root {
            --primary-gold: #D4AF37;
            --primary-red: #E63946;
            --accent-gold: #FFD700;
            --deep-gold: #996515;
            --main-bg: #0B0C10;
            --surface-bg: #1F2833;
            --elevated-bg: #2C3531;
            --primary-text: #FFFFFF;
            --secondary-text: #C5C6C7;
            --muted-text: #8892B0;
            --brand-text: #D4AF37;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-standard: #45A29E;
            --border-subtle: #1F2833;
            --border-active: #D4AF37;
            --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
        }

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

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

        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--brand-text);
            margin-bottom: 1rem;
        }

        h1 { font-size: 28px; text-align: center; margin: 20px 0; padding: 0 15px; }
        h2 { font-size: 24px; border-left: 4px solid var(--primary-red); padding-left: 10px; margin-top: 30px; }
        h3 { font-size: 18px; margin-bottom: 0.5rem; }

        a { text-decoration: none; color: inherit; transition: 0.3s; }

        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: 1px solid var(--border-standard);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo img {
            width: 25px;
            height: 25px;
        }

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

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

        .hero-banner {
            width: 100%;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            aspect-ratio: 2 / 1;
            display: block;
            object-fit: cover;
        }

        .jackpot-container {
            background: linear-gradient(135deg, var(--deep-gold), var(--primary-gold));
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            color: #000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .jackpot-label { font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; font-family: 'Courier New', monospace; overflow: hidden; }

        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section p { color: var(--secondary-text); font-size: 16px; }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 15px;
        }

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

        .game-card:active { transform: scale(0.95); }

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

        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin: 0; color: var(--primary-text); }

        .article-list { padding: 15px; }
        .article-item {
            display: flex;
            gap: 15px;
            background: var(--surface-bg);
            margin-bottom: 15px;
            border-radius: 10px;
            padding: 10px;
        }

        .article-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
        .article-text h3 { font-size: 16px; color: var(--accent-gold); }
        .article-text p { font-size: 13px; color: var(--muted-text); }

        .payment-section {
            background-color: var(--elevated-bg);
            padding: 25px 15px;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--secondary-text); }

        .winning-ticker {
            background: var(--surface-bg);
            padding: 15px;
            margin: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-standard);
        }

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

        .winning-item .user { color: var(--accent-gold); }
        .winning-item .amount { color: var(--success); font-weight: bold; }

        .providers-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-block {
            background-color: var(--elevated-bg);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--secondary-text);
            border-bottom: 2px solid var(--primary-gold);
        }

        .reviews-section { padding: 15px; }
        .review-card {
            background: var(--surface-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--primary-red);
        }

        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--muted-text); }
        .stars { color: var(--warning); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--secondary-text); font-style: italic; }

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

        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: var(--elevated-bg);
            border-top: 1px solid var(--border-standard);
        }

        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--muted-text); max-width: 300px; margin: 0 auto; }
        .security-text a { color: var(--primary-red); }

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

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

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-standard);
            z-index: 2000;
        }

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

        @keyframes rollingJackpot {
            0% { opacity: 0.8; }
            50% { opacity: 1; transform: scale(1.02); }
            100% { opacity: 0.8; }
        }

        .jackpot-amount {
            animation: rollingJackpot 2s infinite ease-in-out;
        }