body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; padding-bottom: 70px; }
        header { background: #121418; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #ffffff; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { border: none; padding: 8px 15px; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 14px; transition: opacity 0.3s; }
        .btn-login { background: #333; color: #fff; }
        .btn-reg { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; text-transform: uppercase; }
        .jackpot-amount { font-size: 2.5rem; color: #FFD700; font-weight: 800; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 1.5rem; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 0.95rem; color: #ccc; }
        .section-title { padding: 0 20px; margin-top: 30px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 1.3rem; border-left: 4px solid #FFD700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 20px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; box-shadow: 0 4px 15px 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 { font-size: 0.9rem; margin: 0; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 0.75rem; color: #888; margin: 5px 0 0; }
        .trust-section { background: #121418; padding: 25px 20px; margin: 20px 0; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; opacity: 0.8; }
        .payment-icons i { font-size: 1.5rem; color: #fff; }
        .guidelines { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 10px; }
        .guide-item h3 { color: #FFD700; font-size: 1.1rem; margin-top: 0; }
        .marquee-container { background: #121418; padding: 10px 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; }
        .marquee-item { display: inline-block; margin-right: 30px; font-size: 0.85rem; color: #ddd; }
        .marquee-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px; justify-content: center; }
        .provider-tag { background: #333; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; color: #FFD700; border: 1px solid #444; }
        .reviews-section { padding: 20px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #FF2E63; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: #FFD700; }
        .stars { color: #FFD700; font-size: 0.8rem; }
        .faq-section { padding: 20px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; color: #FFD700; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 0.9rem; color: #bbb; }
        .security-section { padding: 20px; text-align: center; background: #121418; margin-top: 20px; border-top: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 1.2rem; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #888; text-align: center; font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 3px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #0d0f12; padding: 40px 20px 100px; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 1rem; color: #fff; margin-bottom: 15px; }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; }
        .contact-links a { color: #FFD700; text-decoration: none; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .footer-grid a { color: #888; text-decoration: none; font-size: 0.85rem; display: block; margin-bottom: 8px; }
        .footer-copy { margin-top: 40px; text-align: center; font-size: 0.75rem; color: #555; padding-top: 20px; border-top: 1px solid #222; }