* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Montserrat', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background-color: #151921; 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 #2B2F36; }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button { border: none; border-radius: 4px; padding: 8px 16px; font-weight: 600; cursor: pointer; font-size: 14px; transition: opacity 0.2s; }
        header .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #FFD700; }
        header .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000000; }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { background: #1E2329; border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%); pointer-events: none; }
        .jackpot-title { color: #FFD700; font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: #FFFFFF; font-family: 'Inter', sans-serif; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { background-color: #151921; border-radius: 12px; padding: 25px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: #B0B0B0; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding: 0 5px; }
        .section-header h2 { font-size: 20px; font-weight: 700; color: #FFFFFF; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background-color: #1E2329; border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #2B2F36; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payments-section { background-color: #151921; border-radius: 12px; padding: 20px; margin-bottom: 30px; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; color: #B0B0B0; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .guides-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: #1E2329; padding: 20px; border-radius: 12px; border: 1px solid #2B2F36; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #B0B0B0; }
        .lottery-section { background-color: #151921; border-radius: 12px; padding: 20px; margin-bottom: 30px; }
        .lottery-list { display: flex; flex-direction: column; gap: 10px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; background: #1E2329; border-radius: 8px; font-size: 13px; }
        .lottery-user { color: #FFD700; font-weight: 600; }
        .lottery-win { color: #00C853; font-weight: 700; }
        .providers-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-tag { background: #1E2329; color: #FFD700; padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; border: 1px solid #2B2F36; }
        .comments-section { margin-bottom: 30px; }
        .comment-card { background: #1E2329; padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2B2F36; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 20px; color: #B0B0B0; background: #2B2F36; padding: 10px; border-radius: 50%; }
        .comment-info h3 { font-size: 14px; color: #FFFFFF; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-content { font-size: 14px; color: #B0B0B0; font-style: italic; }
        .comment-date { font-size: 11px; color: #6C757D; margin-top: 8px; display: block; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #151921; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2B2F36; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 14px; color: #B0B0B0; line-height: 1.6; }
        .security-section { background: #1E2329; padding: 25px; border-radius: 12px; text-align: center; margin-bottom: 30px; border: 1px solid #D40000; }
        .security-section i { font-size: 40px; color: #D40000; margin-bottom: 15px; }
        .security-section h2 { color: #FFFFFF; font-size: 20px; margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: #B0B0B0; margin-bottom: 15px; }
        .security-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .security-links a { color: #FFD700; text-decoration: underline; font-size: 12px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #151921; display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid #2B2F36; z-index: 1000; padding: 5px 0; }
        .navigator a { text-decoration: none; color: #B0B0B0; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; transition: color 0.2s; }
        .navigator a i { font-size: 20px; }
        .navigator a:active { color: #FFD700; }
        footer { background-color: #0B0E11; padding: 40px 15px 100px 15px; border-top: 1px solid #2B2F36; text-align: center; }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
        footer .contact-row a { color: #FFD700; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        footer .links-grid a { color: #B0B0B0; text-decoration: none; font-size: 13px; }
        footer .copyright { color: #6C757D; font-size: 12px; border-top: 1px solid #1E2329; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-section { grid-template-columns: 1fr 1fr; }
            .links-grid { grid-template-columns: repeat(5, 1fr); }
        }