:root {
            --bg-dark: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-light: #ffffff;
            --text-muted: #a0a0a0;
            --border-radius: 12px;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding-bottom: 70px;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: rgba(26, 29, 36, 0.95);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .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(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .btn-login { background: #3d4452; color: white; }
        .btn-register { background: var(--cta-gradient); color: white; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            padding: 20px;
            background: linear-gradient(45deg, #000, #222);
            border: 2px solid var(--accent-gold);
            border-radius: var(--border-radius);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; margin-bottom: 5px; font-weight: bold; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.7); }
        .platform-intro { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: var(--border-radius); border-left: 4px solid var(--accent-gold); }
        .platform-intro h1 { font-size: 20px; margin: 0 0 10px 0; color: var(--accent-gold); line-height: 1.2; }
        .platform-intro p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--accent-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { margin: 0; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
        .payments-licenses { margin: 25px 15px; padding: 15px; background: #fff; border-radius: var(--border-radius); display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; }
        .payments-licenses i { font-size: 24px; color: #1a1d24; }
        .guidelines { padding: 0 15px; display: grid; gap: 15px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: var(--border-radius); }
        .guideline-item h2 { font-size: 16px; color: var(--accent-gold); margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
        .winners-marquee { background: #12141a; padding: 10px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { display: inline-flex; align-items: center; gap: 10px; background: #252a34; padding: 8px 15px; margin-right: 15px; border-radius: 30px; border: 1px solid #444; }
        .winner-name { color: var(--accent-gold); font-weight: bold; font-size: 13px; }
        .winner-win { color: #4CAF50; font-weight: bold; font-size: 13px; }
        .providers-wall { padding: 15px; margin: 15px; background: rgba(255,255,255,0.05); border-radius: var(--border-radius); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; border: 1px solid #444; }
        .testimonials { padding: 0 15px; display: grid; gap: 15px; }
        .testimonial-card { background: var(--card-bg); padding: 15px; border-radius: var(--border-radius); }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 40px; height: 40px; border-radius: 50%; background: #3d4452; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .star-rating { color: var(--accent-gold); font-size: 12px; }
        .testimonial-content { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
        .faqs { padding: 0 15px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: var(--border-radius); padding: 15px; }
        .faq-item h2 { font-size: 15px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
        .security-section { margin: 25px 15px; padding: 20px; background: #12141a; border-radius: var(--border-radius); text-align: center; border: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; color: var(--text-muted); }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #12141a; padding: 30px 15px 100px; text-align: center; border-top: 5px solid var(--accent-gold); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-social a { color: var(--text-light); font-size: 14px; border: 1px solid #333; padding: 5px 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; text-align: left; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: var(--text-muted); }
        .footer-copy { font-size: 11px; color: #666; border-top: 1px solid #333; padding-top: 15px; }