* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #111318; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #232730; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #333842; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { margin: 15px; padding: 20px; background: #232730; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #FFD700; }
        .intro-card p { font-size: 14px; color: #cfd4da; }
        .section-title { font-size: 20px; margin: 25px 15px 15px; color: #ffffff; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FF6B35; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
        .game-card { background: #232730; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #333842; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; font-weight: 600; }
        .game-info p { font-size: 12px; color: #8a8f99; margin-top: 2px; }
        .trust-section { margin: 25px 15px; padding: 20px; background: #232730; border-radius: 12px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: center; justify-items: center; opacity: 0.7; }
        .trust-grid i { font-size: 24px; color: #cfd4da; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 15px; }
        .provider-tag { background: #333842; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #cfd4da; border: 1px solid #444a55; }
        .guideline-section { padding: 0 15px; display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 15px; }
        .guideline-item { background: #232730; padding: 15px; border-radius: 12px; border: 1px solid #333842; }
        .guideline-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #cfd4da; }
        .winning-marquee { background: #111318; margin: 25px 0; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333842; border-bottom: 1px solid #333842; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .winner-item { display: inline-flex; align-items: center; margin-right: 30px; font-size: 13px; background: #232730; padding: 5px 15px; border-radius: 20px; border: 1px solid #444a55; }
        .winner-item span { color: #FFD700; margin-left: 8px; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .comment-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #232730; padding: 15px; border-radius: 12px; border: 1px solid #333842; }
        .comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { font-size: 30px; color: #FF6B35; }
        .username { font-weight: 600; font-size: 14px; }
        .rating { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 12px; color: #8a8f99; }
        .comment-text { font-size: 13px; color: #cfd4da; }
        .faq-section { padding: 0 15px; display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: #232730; border-radius: 12px; border: 1px solid #333842; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: #FFD700; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #cfd4da; }
        .security-section { margin: 25px 15px; padding: 20px; background: #232730; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: #FFD700; border: 1px solid #FFD700; padding: 4px 10px; border-radius: 4px; }
        .security-text { font-size: 12px; color: #8a8f99; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111318; height: 65px; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #2a2e38; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #8a8f99; font-size: 12px; gap: 5px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { background: linear-gradient(90deg, #FF6B35, #FF2E63); width: 50px; height: 50px; border-radius: 50%; color: #fff; margin-top: -30px; border: 4px solid #1a1d24; display: flex; justify-content: center; align-items: center; }
        footer { background: #111318; padding: 30px 15px 80px; margin-top: 40px; }
        .footer-contact { display: flex; justify-content: space-around; margin-bottom: 30px; }
        .footer-contact a { color: #cfd4da; font-size: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #8a8f99; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guideline-section { grid-template-columns: repeat(2, 1fr); }
            .comment-grid { flex-direction: row; flex-wrap: wrap; }
            .comment-card { width: calc(50% - 15px); }
        }