:root {
            --bg-dark: #1a1d24;
            --card-bg: #252a34;
            --gold: #FFD700;
            --cta-gradient: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%);
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --rounded: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: #11141a;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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: normal; color: var(--gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--text-white); border: 1px solid var(--text-white); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; height: auto; aspect-ratio: 2/1; display: block; }
        .jackpot-section {
            background: radial-gradient(circle, #3a0d11 0%, #1a1d24 100%);
            padding: 20px 15px;
            text-align: center;
            margin: 15px;
            border-radius: var(--rounded);
            border: 1px solid #444;
        }
        .jackpot-title { color: var(--gold); font-size: 18px; text-transform: uppercase; font-weight: bold; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px 15px; margin: 0 15px 20px; background: var(--card-bg); border-radius: var(--rounded); }
        .intro-card h1 { font-size: 20px; color: var(--gold); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-bottom: 15px; font-size: 18px; border-left: 4px solid var(--gold); margin-left: 15px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px 20px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: var(--rounded);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            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; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-gray); }
        .payment-methods {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            background: #11141a;
            margin-bottom: 20px;
        }
        .payment-methods i { font-size: 30px; color: var(--text-gray); }
        .guidelines { padding: 0 15px 20px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: var(--rounded); margin-bottom: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-gray); }
        .marquee-container {
            background: #11141a;
            padding: 10px 0;
            overflow: hidden;
            margin-bottom: 25px;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll 40s linear infinite;
        }
        .win-item {
            display: inline-flex;
            align-items: center;
            padding: 5px 15px;
            background: rgba(255,255,255,0.05);
            margin: 0 10px;
            border-radius: 20px;
            font-size: 12px;
        }
        .win-item b { color: var(--gold); margin: 0 5px; }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-wall {
            padding: 20px 15px;
            text-align: center;
            background: var(--card-bg);
            margin: 0 15px 25px;
            border-radius: var(--rounded);
        }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 10px; }
        .providers-list span { font-weight: bold; color: var(--text-gray); font-size: 14px; }
        .reviews { padding: 0 15px 20px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: var(--rounded); margin-bottom: 15px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 20px; color: var(--gold); }
        .stars { color: var(--gold); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-gray); }
        .faq-section { padding: 0 15px 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .security-section {
            padding: 20px;
            background: #11141a;
            text-align: center;
            margin: 15px;
            border-radius: var(--rounded);
        }
        .security-section h2 { font-size: 18px; margin-bottom: 15px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .security-section p { font-size: 12px; color: var(--text-gray); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #11141a;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 2000;
        }
        .nav-item { text-align: center; font-size: 10px; color: var(--text-gray); }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        footer { background: #0b0d11; padding: 30px 20px 100px; text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 12px; color: var(--text-gray); }
        .copyright { font-size: 11px; color: #555; padding-top: 20px; border-top: 1px solid #222; }