* { 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: #111419; 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; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .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, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px #FFD700; font-family: monospace; }
        .intro-card { padding: 20px; margin: 15px; background: #232730; border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #232730; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #111; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; color: #fff; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .payment-section { padding: 20px 15px; background: #111419; margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; align-items: center; opacity: 0.7; }
        .payment-icon { font-size: 24px; color: #fff; }
        .guidelines-section { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #232730; padding: 15px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #111419; padding: 10px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        .win-record { white-space: nowrap; font-size: 13px; color: #eee; }
        .win-record span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; opacity: 0.6; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: bold; }
        .reviews-section { padding: 15px; }
        .review-card { background: #232730; border-radius: 12px; padding: 15px; margin-bottom: 15px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 24px; color: #FFD700; }
        .review-name { font-weight: bold; font-size: 14px; }
        .review-rating { color: #FFD700; font-size: 12px; margin-bottom: 5px; }
        .review-date { font-size: 11px; color: #666; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: #bbb; }
        .faq-section { padding: 15px; }
        .faq-item { background: #232730; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-section { text-align: center; padding: 30px 15px; background: #111419; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover, .nav-item.active { color: #FFD700; }
        footer { background: #0a0c10; padding: 30px 15px; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-link { font-size: 14px; color: #bbb; border: 1px solid #333; padding: 5px 12px; border-radius: 5px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-grid a { font-size: 13px; color: #777; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }