* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Montserrat', sans-serif; line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        
        header { position: sticky; top: 0; z-index: 1000; background: #1A1A1A; border-bottom: 2px solid #D4AF37; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; height: 60px; }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #D4AF37; }
        header .auth-btns { display: flex; gap: 8px; }
        header button { border: none; padding: 8px 15px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        header .login-btn { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        header .reg-btn { background: #D4AF37; color: #000000; }

        main { padding-bottom: 100px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: linear-gradient(180deg, #800000 0%, #1A1A1A 100%); padding: 20px; text-align: center; border-y: 1px solid #D4AF37; margin: 15px 0; }
        .jackpot-title { color: #F9E076; font-size: 18px; margin-bottom: 5px; letter-spacing: 2px; }
        .jackpot-amount { color: #FFD700; font-size: 36px; font-weight: 800; font-family: 'Oswald', sans-serif; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .intro-card { background: #1A1A1A; padding: 20px; margin: 15px; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; color: #D4AF37; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #B3B3B3; }

        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid #800000; }
        .section-title h2 { font-size: 22px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242424; border-radius: 10px; overflow: hidden; border: 1px solid #333; transition: 0.3s; }
        .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: 8px; text-align: center; color: #FFFFFF; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

        .payment-section { background: #1A1A1A; padding: 20px 15px; margin: 20px 0; }
        .payment-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: 5px; }
        .payment-item i { font-size: 24px; color: #D4AF37; }
        .payment-item span { font-size: 10px; color: #B3B3B3; }

        .guides-container { padding: 0 15px; }
        .guide-item { background: #242424; padding: 15px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #333; }
        .guide-item h3 { color: #F9E076; margin-bottom: 8px; font-size: 18px; }
        .guide-item p { font-size: 13px; color: #B3B3B3; text-align: justify; }

        .lottery-section { background: #0D0D0D; padding: 20px 15px; border-y: 1px solid #333; }
        .lottery-list { display: flex; flex-direction: column; gap: 8px; }
        .lottery-item { background: rgba(212, 175, 55, 0.05); padding: 10px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; border: 1px solid #242424; }
        .lottery-user { color: #D4AF37; font-weight: 600; }
        .lottery-win { color: #28A745; font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin: 20px 0; }
        .provider-item { background: #800000; color: #FFF; padding: 12px; text-align: center; font-weight: bold; border-radius: 4px; font-size: 14px; }

        .comment-section { padding: 0 15px; }
        .comment-card { background: #242424; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; border-bottom: 3px solid #D4AF37; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #D4AF37; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-content { font-size: 13px; color: #B3B3B3; font-style: italic; margin: 10px 0; }
        .comment-date { font-size: 11px; color: #808080; text-align: right; }

        .faq-section { padding: 0 15px; }
        .faq-item { background: #1A1A1A; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: #D4AF37; }
        .faq-answer { padding: 0 15px 15px; color: #B3B3B3; font-size: 13px; display: block; }

        .security-section { background: #1A1A1A; padding: 25px 15px; margin-top: 30px; text-align: center; border-top: 2px solid #800000; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 30px; color: #D4AF37; }
        .security-text { font-size: 12px; color: #B3B3B3; max-width: 300px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: #1A1A1A; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #D4AF37; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B3B3B3; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { background: #D4AF37; width: 60px; height: 60px; border-radius: 50%; margin-top: -30px; justify-content: center; color: #000; border: 4px solid #0D0D0D; }

        footer { background: #0D0D0D; padding: 30px 15px 120px; text-align: center; border-top: 1px solid #333; }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        footer .contact-row a { color: #D4AF37; font-size: 14px; text-decoration: underline; }
        footer .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .link-grid a { color: #808080; font-size: 12px; }
        footer .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }