* { 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; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f1c40f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; border: none; font-weight: bold; font-size: 14px; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #f1c40f; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(180deg, #f1c40f 0%, #d4af37 100%); color: #1a1d24; }
        .main-container { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-box { width: 100%; cursor: pointer; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
        .banner-box img { width: 100%; aspect-ratio: 2 / 1; display: block; object-fit: cover; }
        .section-title { font-size: 1.2rem; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid #f1c40f; display: flex; align-items: center; gap: 8px; }
        .jackpot-box { background: radial-gradient(circle, #2c3e50 0%, #000000 100%); border: 2px solid #f1c40f; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-amount { font-size: 2rem; color: #f1c40f; font-weight: 800; text-shadow: 0 0 10px rgba(241, 196, 15, 0.5); }
        .jackpot-label { text-transform: uppercase; font-size: 12px; letter-spacing: 2px; color: #bdc3c7; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.3s; }
        .game-card img { width: 100%; height: auto; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #252a34; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #444; }
        .intro-card h1 { font-size: 1.4rem; color: #f1c40f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; display: flex; gap: 15px; align-items: flex-start; }
        .guide-icon { color: #f1c40f; font-size: 20px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: #999; }
        .winning-scroll { background: #11141a; border-radius: 12px; height: 250px; overflow-y: auto; padding: 10px; border: 1px solid #333; margin-bottom: 25px; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #222; font-size: 13px; }
        .winning-user { color: #bdc3c7; }
        .winning-amount { color: #2ecc71; font-weight: bold; }
        .features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-box { background: #252a34; padding: 15px 5px; border-radius: 10px; }
        .feature-box i { font-size: 24px; color: #f1c40f; margin-bottom: 8px; }
        .feature-box span { font-size: 11px; display: block; color: #bdc3c7; }
        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #252a34; padding: 15px; border-radius: 12px; position: relative; border-left: 3px solid #f1c40f; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .comment-user { font-weight: bold; font-size: 14px; }
        .comment-rating { color: #f1c40f; font-size: 12px; }
        .comment-text { font-size: 13px; font-style: italic; color: #bdc3c7; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: #bdc3c7; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; display: flex; justify-content: space-around; padding: 10px 5px; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #bdc3c7; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f1c40f; }
        footer { background: #0c0e12; padding: 30px 15px 80px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #bdc3c7; }
        .footer-copyright { font-size: 12px; color: #666; margin-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .comments-grid { grid-template-columns: repeat(2, 1fr); }
        }