* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background: #1A1A1A; padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2A2A2A; display: flex; justify-content: space-between; align-items: center; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; font-family: 'Montserrat', sans-serif; }
        header .auth-btns { display: flex; gap: 8px; }
        header .btn { padding: 8px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #FFD700; }
        header .btn-register { background: #FFD700; color: #000000; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%); margin: 16px; padding: 20px; border-radius: 12px; border: 1px solid #B8860B; text-align: center; }
        .jackpot-title { font-family: 'Oswald', sans-serif; color: #B0B0B0; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; color: #FFD700; font-size: 36px; font-weight: 900; margin: 8px 0; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #1A1A1A; margin: 16px; padding: 24px; border-radius: 16px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: #B0B0B0; }
        .section-title { font-family: 'Oswald', sans-serif; font-size: 22px; padding: 16px 16px 8px; color: #FFFFFF; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #E63946; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; }
        .game-card { background: #262626; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; color: #FFFFFF; font-weight: 500; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #1A1A1A; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; background: #1A1A1A; margin: 16px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .payment-item span { font-size: 10px; color: #808080; }
        .guide-section { padding: 16px; }
        .guide-item { background: #1A1A1A; padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2A2A2A; }
        .guide-item h2 { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #B0B0B0; }
        .lottery-section { background: #1A1A1A; margin: 16px; border-radius: 12px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid #2A2A2A; }
        .lottery-user { font-weight: 600; color: #FFD700; }
        .lottery-game { font-size: 13px; color: #B0B0B0; }
        .lottery-win { color: #28A745; font-weight: 700; }
        .lottery-time { font-size: 11px; color: #808080; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
        .provider-item { background: #1D3557; color: #FFFFFF; padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; }
        .comment-section { padding: 12px; }
        .comment-card { background: #262626; padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #333333; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .user-info i { color: #FFD700; background: #333; padding: 8px; border-radius: 50%; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #808080; text-align: right; margin-top: 8px; }
        .faq-section { padding: 16px; }
        .faq-item { background: #1A1A1A; border-radius: 8px; margin-bottom: 10px; border: 1px solid #2A2A2A; }
        .faq-question { padding: 14px; font-weight: 600; font-size: 15px; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 14px 14px; font-size: 14px; color: #B0B0B0; }
        .safety-section { background: #0D0D0D; padding: 24px 16px; text-align: center; border-top: 1px solid #2A2A2A; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; font-size: 24px; color: #FFD700; }
        .safety-text { font-size: 12px; color: #808080; max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1A1A; display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid #2A2A2A; z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B0B0; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; font-family: 'Inter', sans-serif; }
        footer { background: #000000; padding: 32px 16px 100px; border-top: 1px solid #2A2A2A; }
        .footer-row { margin-bottom: 24px; }
        .footer-title { font-family: 'Oswald', sans-serif; color: #FFFFFF; font-size: 16px; margin-bottom: 12px; text-transform: uppercase; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .footer-link { color: #808080; text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .footer-link:hover { color: #FFD700; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        .copyright { text-align: center; font-size: 11px; color: #555555; border-top: 1px solid #1A1A1A; padding-top: 20px; }