* { 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; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #D4AF37; }
        a { text-decoration: none; color: inherit; }
        
        header { background-color: #1A1A1A; border-bottom: 2px solid #D4AF37; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; }
        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: normal; color: #FFFFFF; font-family: 'Bebas+Neue', sans-serif; letter-spacing: 1px; }
        header .actions { display: flex; gap: 10px; }
        header .btn { padding: 6px 15px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        header .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .btn-register { background: linear-gradient(180deg, #D4AF37 0%, #8B0000 100%); color: #FFFFFF; }

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

        .jackpot-container { background: #1A1A1A; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #333; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; color: #00FF41; text-shadow: 0 0 10px rgba(0, 255, 65, 0.5); }

        .intro-card { background: #1A1A1A; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #E0E0E0; text-align: justify; }

        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 22px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: #8B0000; display: inline-block; }

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

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: #1A1A1A; margin: 15px; border-radius: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: #A0A0A0; }
        .payment-item i { font-size: 20px; color: #D4AF37; }

        .guides-container { padding: 0 15px; }
        .guide-card { background: #1A1A1A; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #262626; }
        .guide-card h2 { font-size: 18px; margin-bottom: 8px; color: #F9E076; }
        .guide-card p { font-size: 14px; color: #A0A0A0; }

        .lottery-section { background: #1A1A1A; margin: 15px; padding: 15px; border-radius: 15px; border: 1px solid #333; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #262626; }
        .lottery-item:last-child { border-bottom: none; }
        .user-info { display: flex; flex-direction: column; }
        .user-name { font-weight: bold; color: #D4AF37; font-size: 14px; }
        .game-name { font-size: 12px; color: #A0A0A0; }
        .win-info { text-align: right; }
        .win-amount { color: #00FF41; font-weight: bold; font-size: 14px; }
        .win-time { font-size: 11px; color: #A0A0A0; }

        .providers-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 15px; }
        .provider-box { flex: 1; min-width: 45%; background: #262626; padding: 10px; text-align: center; border-radius: 8px; border: 1px solid #D4AF37; font-weight: bold; color: #D4AF37; font-size: 14px; }

        .comment-section { padding: 0 15px; }
        .comment-card { background: #1A1A1A; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #A0A0A0; }
        .comment-meta { display: flex; flex-direction: column; }
        .comment-user { font-weight: bold; font-size: 14px; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-content { font-size: 14px; color: #E0E0E0; font-style: italic; margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: #A0A0A0; 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: bold; font-size: 15px; display: flex; justify-content: space-between; border-bottom: 1px solid #262626; }
        .faq-answer { padding: 15px; font-size: 14px; color: #A0A0A0; background: #0D0D0D; }

        .safety-section { margin: 20px 15px; padding: 20px; background: #1A1A1A; border-radius: 15px; text-align: center; border: 1px solid #8B0000; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #D4AF37; }
        .safety-text { font-size: 12px; color: #A0A0A0; }
        .safety-links { margin-top: 10px; display: flex; justify-content: center; gap: 15px; font-size: 12px; color: #3B82F6; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1A1A1A; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #A0A0A0; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #D4AF37; }

        footer { background: #0D0D0D; border-top: 1px solid #333; padding: 30px 15px 100px; text-align: center; }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-link { color: #D4AF37; font-size: 14px; text-decoration: underline; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        footer .footer-link { color: #A0A0A0; font-size: 13px; display: block; margin-bottom: 8px; }
        footer .copyright { font-size: 12px; color: #4D4D4D; padding-top: 20px; border-top: 1px solid #1A1A1A; }