* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .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-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner-section { margin-bottom: 20px; cursor: pointer; }
        .banner-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-card { background: radial-gradient(circle, #2c3e50, #000); border: 2px solid #ffd700; margin: 15px; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
        .jackpot-title { font-size: 18px; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #ffd700; font-family: monospace; }
        .section-title { padding: 15px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #ffd700; }
        .section-title i { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.3s; 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-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .guidelines-section { padding: 15px; background: #16191f; margin: 15px 0; }
        .guideline-item { display: flex; gap: 15px; margin-bottom: 15px; background: #1a1d24; padding: 15px; border-radius: 10px; }
        .guideline-icon { color: #ffd700; font-size: 24px; }
        .guideline-content h3 { font-size: 16px; margin-bottom: 5px; color: #fff; }
        .guideline-content p { font-size: 13px; color: #999; }
        .winners-section { background: #1a1d24; margin: 15px; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-name { color: #aaa; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .comment-section { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323e; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323e; display: flex; align-items: center; justify-content: center; color: #ffd700; }
        .user-name { font-size: 14px; font-weight: bold; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #2d323e; color: #ffd700; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b0b0; line-height: 1.6; }
        .trust-elements { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; opacity: 0.6; }
        .trust-item { font-size: 24px; color: #fff; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 999; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a8e94; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #8a8e94; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .tag-badge { position: absolute; top: 5px; right: 5px; background: #e74c3c; color: white; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: bold; }