* { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register { padding: 6px 12px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; 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-login:active, .btn-register:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .jackpot-container { background: radial-gradient(circle, #2c313c, #1a1d24); padding: 20px 15px; margin: 15px; border-radius: 15px; border: 2px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-label { font-size: 18px; color: #FFD700; font-weight: bold; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; letter-spacing: 2px; font-family: 'Courier New', monospace; }
        .intro-card { padding: 20px; margin: 15px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 15px 15px 5px; font-size: 20px; border-bottom: 2px solid #FF6B35; display: inline-block; margin-left: 15px; margin-bottom: 15px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; }
        .payment-section { background: #252932; padding: 20px; margin: 15px; border-radius: 15px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #FFD700; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guideline-item { background: #252932; padding: 15px; border-radius: 12px; border-top: 2px solid #FF2E63; }
        .guideline-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #111; padding: 10px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
        .marquee-item { 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%); } }
        .providers-section { padding: 20px; background: #252932; margin: 15px; border-radius: 15px; text-align: center; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #FFD700; border: 1px solid #333; }
        .reviews-section { padding: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-name { font-weight: bold; flex-grow: 1; }
        .review-rating { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-section { padding: 20px; background: #111; margin: 15px; border-radius: 15px; text-align: center; border: 1px dashed #FF2E63; }
        .security-title { font-size: 18px; color: #FF2E63; margin-bottom: 10px; font-weight: bold; }
        .security-content { font-size: 12px; color: #888; margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; font-size: 20px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #252932; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #ccc; transition: color 0.3s; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: #FFD700; }
        footer { padding: 30px 15px 100px; background: #000; text-align: center; }
        .footer-contact { margin-bottom: 20px; }
        .footer-contact a { display: block; font-size: 14px; margin-bottom: 5px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; text-align: left; }
        .footer-links a { font-size: 12px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; border-top: 1px solid #333; padding-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .banner { aspect-ratio: 4/1; }
        }