* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { background: #12141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-top { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; font-size: 14px; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #fff; }

        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .platform-intro { background: #252932; padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #ccc; }

        section { margin-bottom: 30px; }
        h2 { font-size: 20px; margin-bottom: 15px; padding-left: 10px; border-left: 3px solid #FF2E63; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252932; border-radius: 10px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info span { font-size: 12px; color: #888; }

        .payment-methods { background: #252932; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .payment-item span { display: block; font-size: 10px; margin-top: 5px; color: #bbb; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: #252932; padding: 15px; border-radius: 10px; font-size: 13px; color: #ddd; }

        .marquee-container { background: #12141a; padding: 15px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; white-space: nowrap; }
        .win-record { display: flex; align-items: center; gap: 10px; background: #252932; padding: 5px 15px; border-radius: 20px; border: 1px solid #444; }
        .win-record strong { color: #FFD700; }
        .win-record span { color: #00ff88; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { background: #252932; padding: 20px; border-radius: 12px; text-align: center; font-weight: bold; color: #888; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .provider-name { color: #fff; border: 1px solid #444; padding: 5px 10px; border-radius: 5px; font-size: 12px; }

        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .comment-card { background: #252932; padding: 20px; border-radius: 12px; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 30px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; margin-left: auto; }
        .comment-text { font-size: 13px; color: #ccc; }

        .faq-section { background: #252932; border-radius: 12px; overflow: hidden; }
        .faq-item { border-bottom: 1px solid #333; padding: 15px; }
        .faq-question { font-weight: bold; color: #FFD700; margin-bottom: 8px; font-size: 15px; }
        .faq-answer { font-size: 13px; color: #bbb; }

        .safety-section { background: #12141a; border: 1px dashed #FFD700; border-radius: 12px; padding: 20px; text-align: center; margin-top: 20px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .safety-text { font-size: 12px; color: #888; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #FFD700; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #888; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-contact { margin-bottom: 20px; }
        .footer-contact a { margin: 0 10px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { color: #aaa; font-size: 12px; }
        .copyright { border-top: 1px solid #333; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .comments-grid { grid-template-columns: repeat(2, 1fr); }
            .payment-methods { grid-template-columns: repeat(8, 1fr); }
        }