* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #12141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 12px; border-radius: 4px; border: 1px solid #FFD700; color: #FFD700; font-size: 14px; font-weight: bold; }
        .btn-register { padding: 6px 12px; border-radius: 4px; background: linear-gradient(to right, #FF6B35, #FF2E63); color: white; border: none; font-size: 14px; font-weight: bold; }
        .banner { width: 100%; display: block; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 12px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: linear-gradient(to bottom, #FFD700, #b8860b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: #ccc; }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; border-left: 4px solid #FFD700; margin: 10px 0; background: #23272f; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; }
        .game-card { background: #23272f; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-provider { font-size: 11px; color: #FFD700; }
        .payment-methods { background: #23272f; padding: 20px; margin: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-methods i { font-size: 24px; color: #aaa; }
        .guidelines { padding: 15px; }
        .guide-item { background: #23272f; padding: 15px; border-radius: 10px; margin-bottom: 15px; border-top: 2px solid #FF6B35; }
        .guide-item h2 { font-size: 16px; margin-bottom: 10px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winning-marquee { background: #12141a; padding: 10px 0; overflow: hidden; position: relative; border-y: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        .win-tag { white-space: nowrap; padding: 0 20px; font-size: 12px; border-right: 1px solid #333; }
        .win-tag span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; background: #12141a; }
        .provider-name { padding: 5px 12px; border: 1px solid #444; border-radius: 20px; font-size: 12px; color: #999; }
        .reviews { padding: 15px; }
        .review-card { background: #23272f; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: #FFD700; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 5px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .review-date { font-size: 11px; color: #666; margin-top: 8px; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #23272f; border-radius: 8px; overflow: hidden; }
        .faq-item h2 { font-size: 14px; padding: 12px; background: #2c313c; color: #FFD700; cursor: pointer; }
        .faq-item p { font-size: 13px; padding: 12px; color: #bbb; border-top: 1px solid #333; }
        .security-section { padding: 20px; text-align: center; background: #12141a; border-top: 2px solid #FFD700; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #12141a; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #333; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #aaa; }
        .nav-item i { font-size: 18px; }
        footer { padding: 30px 15px 100px; background: #0e1014; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; color: #fff; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { font-size: 13px; color: #FFD700; text-decoration: underline; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-grid a { font-size: 12px; color: #777; transition: color 0.3s; }
        .footer-grid a:hover { color: #FFD700; }
        .copyright { font-size: 11px; color: #555; padding-top: 20px; border-top: 1px solid #222; }