:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: rgba(26, 29, 36, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .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: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-white); }
        .btn-register { background: var(--cta-gradient); color: white; }

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

        .jackpot-container {
            margin: 20px 15px;
            padding: 20px;
            background: radial-gradient(circle, #2d343f 0%, #1a1d24 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: monospace; }

        .platform-intro { padding: 20px 15px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 12px; }
        .platform-intro p { font-size: 14px; color: var(--text-gray); }

        .section-title { padding: 15px; font-size: 18px; border-left: 4px solid var(--accent-gold); margin: 10px 15px; background: rgba(255,255,255,0.05); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-gray); text-transform: uppercase; }

        .payments-licenses { background: var(--card-bg); margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .icon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; margin-top: 15px; opacity: 0.8; }
        .icon-row i { font-size: 24px; color: var(--text-gray); }

        .guidelines { padding: 0 15px; margin-bottom: 30px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: 10px; margin-bottom: 10px; border-left: 3px solid #FF2E63; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .guideline-item p { font-size: 13px; color: var(--text-gray); }

        .winnings-marquee { background: rgba(0,0,0,0.3); padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .winning-item { display: inline-block; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
        .winning-item span { color: var(--accent-gold); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; margin-bottom: 30px; }
        .provider-tag { background: #2d343f; padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid rgba(255,215,0,0.3); }

        .reviews { padding: 0 15px; margin-bottom: 30px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-gray); }
        .review-meta h3 { font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); display: block; }
        .review-content { font-size: 13px; font-style: italic; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--card-bg); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }

        .security { text-align: center; padding: 25px 15px; background: #11141a; border-radius: 20px 20px 0 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security i { font-size: 20px; color: var(--accent-gold); }
        .security p { font-size: 12px; color: var(--text-gray); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-gray); font-size: 10px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) i { color: var(--accent-gold); font-size: 24px; }

        footer { padding: 30px 15px; background: #0d0f13; border-top: 1px solid #2d343f; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; }
        .contact-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .contact-links a { font-size: 13px; color: var(--text-gray); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-grid a { font-size: 12px; color: var(--text-gray); display: block; margin-bottom: 8px; }
        .copyright { font-size: 11px; color: #4a5568; margin-top: 20px; border-top: 1px solid #1a1d24; padding-top: 15px; }

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