* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; padding-bottom: 70px; }
        header { position: sticky; top: 0; z-index: 1000; background: #0A0A0B; border-bottom: 1px solid #23262F; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; color: #D4AF37; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; padding: 6px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #D4AF37 0%, #8A6E2F 100%); color: #0B0E11; border: none; padding: 6px 16px; border-radius: 4px; font-weight: 700; cursor: pointer; }
        main { max-width: 1200px; margin: 0 auto; padding: 16px; display: flex; flex-direction: column; gap: 24px; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #151921; border: 2px solid #D4AF37; border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-title { color: #FFD700; font-family: 'Montserrat', sans-serif; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 800; color: #F1C40F; display: flex; justify-content: center; align-items: center; gap: 5px; }
        .intro-card { background: #1E232F; border-radius: 12px; padding: 24px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 12px; }
        .intro-card p { color: #B1B5C3; font-size: 16px; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; color: #FFFFFF; border-left: 4px solid #FF0000; padding-left: 12px; margin-bottom: 16px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1E232F; border-radius: 8px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #23262F; }
        .game-card:active { transform: scale(0.98); }
        .game-image-wrapper { width: 100%; aspect-ratio: 1 / 1; background: #0B0E11; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .pl-item { background: #151921; padding: 12px; border-radius: 8px; text-align: center; border: 1px solid #23262F; }
        .pl-item i { font-size: 20px; color: #D4AF37; margin-bottom: 5px; display: block; }
        .pl-item span { font-size: 10px; color: #B1B5C3; display: block; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 16px; }
        .guide-card { background: #1E232F; padding: 16px; border-radius: 12px; }
        .guide-card h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: #B1B5C3; }
        .winner-list { background: #151921; border-radius: 12px; padding: 16px; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #23262F; }
        .winner-item:last-child { border-bottom: none; }
        .winner-user { color: #FFFFFF; font-size: 14px; font-weight: 600; }
        .winner-game { color: #B1B5C3; font-size: 12px; }
        .winner-amount { color: #00C853; font-family: 'Roboto Mono', monospace; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .provider-item { background: #1E232F; border: 1px solid #D4AF37; padding: 12px; border-radius: 4px; text-align: center; color: #D4AF37; font-weight: 700; font-size: 14px; }
        .review-grid { display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: #1E232F; padding: 16px; border-radius: 12px; border: 1px solid #353945; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { width: 40px; height: 40px; background: #23262F; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #D4AF37; }
        .review-user-info h4 { font-size: 14px; color: #FFFFFF; }
        .review-rating { color: #FFD700; font-size: 12px; }
        .faq-section { display: flex; flex-direction: column; gap: 12px; }
        .faq-item { background: #151921; border-radius: 8px; padding: 16px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B1B5C3; }
        .security-section { background: #0A0A0B; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed #353945; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #00C853; }
        .security-text { font-size: 12px; color: #777E91; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #151921; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #23262F; z-index: 1001; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B1B5C3; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 10px; font-weight: 500; }
        footer { background: #0A0A0B; padding: 32px 16px; border-top: 1px solid #23262F; }
        .footer-contact { margin-bottom: 24px; text-align: center; }
        .footer-contact h2 { font-size: 18px; margin-bottom: 12px; color: #FFFFFF; }
        .contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .contact-links a { color: #D4AF37; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 24px; }
        .footer-links a { color: #777E91; text-decoration: none; font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; font-size: 12px; color: #777E91; border-top: 1px solid #23262F; padding-top: 16px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section { grid-template-columns: 1fr 1fr; }
            .review-grid { grid-template-columns: 1fr 1fr; display: grid; }
        }