:root {
            --bg-dark: #1a1d24;
            --bg-card: #242832;
            --gold: #FFD700;
            --white: #ffffff;
            --text-gray: #a0a0a0;
            --cta-gradient: linear-gradient(45deg, #FF6B35, #FF2E63);
        }
        * { margin: 0; padding: 0; box-word: border-box; }
        body {
            background-color: var(--bg-dark);
            color: var(--white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-dark);
            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 #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: 10px; }
        .btn {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }
        .btn-login { background: transparent; color: var(--white); border: 1px solid var(--white); }
        .btn-register { background: var(--cta-gradient); color: var(--white); }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: #000;
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            border: 2px solid var(--gold);
            text-align: center;
        }
        .jackpot-title { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-card); border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-top: 20px; font-size: 18px; border-left: 4px solid var(--gold); margin-bottom: 15px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-gray); }
        .trust-section { margin: 20px 15px; background: var(--bg-card); border-radius: 15px; padding: 15px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; justify-items: center; }
        .trust-item { font-size: 24px; color: var(--text-gray); opacity: 0.8; }
        .guidelines { padding: 15px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-card); padding: 15px; border-radius: 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: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-pill { display: inline-flex; align-items: center; background: #222; padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; border: 1px solid #444; }
        .winner-pill span { color: var(--gold); margin-left: 5px; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; opacity: 0.7; }
        .provider-tag { background: #333; padding: 4px 10px; border-radius: 4px; font-size: 12px; }
        .reviews { padding: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 20px; color: var(--gold); }
        .stars { color: var(--gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); margin-left: auto; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .security-footer { text-align: center; padding: 20px 15px; border-top: 1px solid #333; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 10px; color: var(--text-gray); font-size: 20px; }
        .navigator {
            position: fixed; bottom: 0; left: 0; width: 100%; background: #111;
            display: flex; justify-content: space-around; padding: 10px 0;
            border-top: 1px solid #333; z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-gray); }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }
        footer { padding: 30px 15px; background: #0d0e12; color: var(--text-gray); font-size: 13px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: left; }
        .footer-contact { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-contact a { color: var(--gold); }
        .copyright { font-size: 11px; border-top: 1px solid #333; padding-top: 20px; }