* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1115; color: #e0e0e0; 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 { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #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-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .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: #fff; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-register { background-color: #ffd700; color: #000; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { margin: 20px 15px; background: linear-gradient(135deg, #2c3e50, #000000); border: 2px solid #ffd700; border-radius: 15px; padding: 20px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.8); margin: 5px 0; }
        .section-title { margin: 25px 15px 15px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; 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; color: #ccc; }
        .intro-card { margin: 30px 15px; background: #1a1d24; border-radius: 15px; padding: 25px; border: 1px solid #2a2e37; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; margin-bottom: 30px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; gap: 15px; align-items: flex-start; }
        .guide-item i { color: #ffd700; font-size: 24px; margin-top: 4px; }
        .guide-content h3 { font-size: 16px; color: #fff; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: #888; }
        .winners-box { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; height: 300px; overflow-y: hidden; position: relative; border: 1px solid #2a2e37; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; animation: scrollWinners 20s linear infinite; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; background: #11141a; margin: 30px 0; display: flex; justify-content: space-around; text-align: center; }
        .pro-item i { font-size: 28px; color: #ffd700; margin-bottom: 10px; }
        .pro-item span { display: block; font-size: 12px; color: #aaa; }
        .comments-section { padding: 0 15px; margin-bottom: 30px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #ffd700; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .comment-user { font-weight: 600; font-size: 14px; color: #fff; }
        .stars { color: #ffd700; font-size: 12px; }
        .comment-text { font-size: 13px; color: #999; font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 40px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #fff; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid #2a2e37; }
        .faq-answer { padding: 15px; font-size: 13px; color: #888; background: #16191f; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #2a2e37; }
        .nav-item { text-align: center; color: #888; flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item span { font-size: 11px; display: block; }
        .nav-item:active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #666; font-size: 13px; }
        .footer-links a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #444; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }