body { background-color: #12141a; color: #e0e0e0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #ffc107; color: #ffc107; }
        .btn-register { background: linear-gradient(135deg, #ffc107, #ff9800); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #3d4452; }
        .jackpot-title { font-size: 14px; color: #ffc107; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 15px rgba(255,193,7,0.5); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #ffc107; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1e222a; border-radius: 12px; overflow: hidden; border: 1px solid #2d333e; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; margin: 0; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #ffc107; }
        .intro-card h1 { font-size: 18px; color: #fff; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #99a1b3; margin: 0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 12px; border: 1px solid #2d333e; }
        .guide-item h2 { font-size: 16px; color: #ffc107; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #99a1b3; margin: 0; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #2d333e; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #fff; }
        .winner-amount { color: #00c853; font-weight: bold; }
        .trust-elements { padding: 20px 15px; text-align: center; background: #16191f; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .trust-item { font-size: 24px; color: #4b5363; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1e222a; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2d333e; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-name { color: #ffc107; font-weight: 600; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #99a1b3; font-style: italic; }
        .faq-section { padding: 15px; margin-bottom: 80px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d333e; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #fff; border-bottom: 1px solid #2d333e; }
        .faq-answer { padding: 15px; font-size: 13px; color: #99a1b3; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 2000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #99a1b3; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffc107; }
        footer { background: #0d0f14; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #666; font-size: 13px; transition: color 0.2s; }
        .footer-link:hover { color: #ffc107; }
        .copyright { color: #444; font-size: 12px; margin-top: 20px; }