* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; 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: #111419; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { border: none; border-radius: 5px; padding: 8px 15px; font-size: 14px; font-weight: 600; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; max-width: 1200px; margin: 10px auto; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #23272e; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; display: block; }
        #jackpot-amount { font-size: 32px; font-weight: 800; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { padding: 20px; max-width: 1200px; margin: 0 auto; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        section { padding: 20px 15px; max-width: 1200px; margin: 0 auto; }
        h2 { font-size: 20px; color: #FFD700; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ""; width: 4px; height: 20px; background: #FF2E63; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #23272e; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: 600; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; margin-top: 4px; }
        .payments-section { background: #111419; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; align-items: center; padding: 25px; border-radius: 15px; }
        .payments-section i { font-size: 30px; color: #555; }
        .payout-marquee { background: #23272e; padding: 10px 0; overflow: hidden; position: relative; border-top: 1px solid #2a2e37; border-bottom: 1px solid #2a2e37; }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
        .marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 20px; border-right: 1px solid #333; font-size: 13px; }
        .marquee-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #23272e; padding: 15px; border-radius: 10px; border-left: 3px solid #FFD700; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; opacity: 0.7; }
        .provider-tag { background: #2a2e37; padding: 5px 12px; border-radius: 20px; font-size: 12px; color: #ddd; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: #23272e; padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-meta h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-list { display: flex; flex-direction: column; gap: 15px; }
        .faq-item { background: #23272e; border-radius: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .security-section { background: #111419; padding: 20px; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b3b8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0a0c10; padding: 40px 20px; border-top: 2px solid #2a2e37; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #b0b3b8; }
        .copyright { text-align: center; font-size: 12px; color: #555; padding-top: 20px; border-top: 1px solid #1a1d24; }