body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; overflow-x: hidden; line-height: 1.6; }
        header { background-color: #121418; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 14px; transition: transform 0.2s; text-decoration: none; display: inline-block; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .btn:active { transform: scale(0.95); }
        main { max-width: 1200px; margin: 0 auto; padding: 0 0 80px 0; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); margin: 20px 10px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #252932; margin: 20px 10px; padding: 25px; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { color: #FFD700; font-size: 22px; margin-top: 0; margin-bottom: 15px; }
        .intro-card p { font-size: 15px; color: #ccc; margin: 0; }
        .section-header { padding: 0 15px; margin-top: 30px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; color: #FFD700; margin: 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.2s; border: 1px solid #333; }
        .game-card:hover { transform: translateY(-5px); border-color: #FFD700; }
        .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: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; margin-top: 4px; }
        .payment-methods { background: #121418; margin: 20px 10px; padding: 20px; border-radius: 15px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 30px; color: #aaa; }
        .guidelines { padding: 15px; }
        .guideline-item { background: #252932; padding: 20px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid #FFD700; }
        .guideline-item h2 { font-size: 18px; color: #FFD700; margin-top: 0; }
        .winner-marquee { background: #121418; padding: 15px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-item { display: inline-flex; align-items: center; gap: 10px; background: #252932; padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid #444; }
        .winner-item span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; text-align: center; color: #888; font-size: 14px; background: #121418; margin: 20px 10px; border-radius: 15px; }
        .reviews { padding: 15px; }
        .review-card { background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 15px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: #FFD700; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .faq { padding: 15px; }
        .faq-item { background: #252932; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-top: 0; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #ccc; margin: 0; }
        .security-section { padding: 20px; text-align: center; border-top: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-weight: 500; }
        footer { background: #0d0f12; padding: 30px 15px 100px; border-top: 1px solid #333; }
        .footer-contact { text-align: center; margin-bottom: 30px; }
        .footer-contact h2 { font-size: 18px; margin-bottom: 15px; color: #FFD700; }
        .social-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .social-links a { color: #ccc; text-decoration: none; font-size: 14px; border: 1px solid #444; padding: 5px 12px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: #888; text-decoration: none; font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; color: #555; font-size: 12px; border-top: 1px solid #222; padding-top: 20px; }