* { 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; }
        header { background: #11141a; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f39c12; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: #444; color: #fff; padding: 6px 15px; border-radius: 20px; font-size: 14px; border: none; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; padding: 6px 15px; border-radius: 20px; font-size: 14px; border: none; cursor: pointer; font-weight: bold; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c3e50, #000); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #f39c12; }
        .jackpot-title { font-size: 14px; color: #f39c12; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px #f39c12; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f39c12; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ddd; }
        .intro-card { background: #242832; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #f39c12; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f39c12; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guideline-item { background: #11141a; padding: 15px; border-radius: 10px; border: 1px solid #333; }
        .guideline-item h3 { font-size: 16px; color: #f39c12; margin-bottom: 5px; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .winners-container { margin: 15px; background: #242832; border-radius: 15px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-name { color: #f39c12; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; background: #11141a; }
        .pro-item { text-align: center; width: 80px; }
        .pro-item i { font-size: 24px; color: #f39c12; margin-bottom: 5px; }
        .pro-item span { font-size: 11px; display: block; color: #aaa; }
        .comments-section { padding: 15px; }
        .comment-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .comment-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; color: #f39c12; display: flex; align-items: center; gap: 5px; }
        .comment-text { font-size: 13px; font-style: italic; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { background: #242832; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #333; }
        .faq-item h3 { font-size: 15px; color: #f39c12; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #11141a; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f39c12; }
        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #aaa; }
        .footer-copyright { font-size: 12px; color: #666; margin-top: 10px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            main { max-width: 1000px; margin: 0 auto; }
        }