body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; padding-bottom: 70px; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .logo-box img { width: 25px; height: 25px; border-radius: 5px; margin-right: 8px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #4a4d55; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .jackpot-section { margin: 15px; background: linear-gradient(45deg, #1e222b, #2c313c); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #3d424d; }
        .jackpot-title { color: #ffd700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); font-family: monospace; }
        .section-title { margin: 20px 15px 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #ffd700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; display: block; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; background: #1e222b; border-radius: 15px; padding: 20px; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; margin: 0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #ffd700; font-size: 20px; margin-top: 3px; }
        .guide-text h3 { margin: 0 0 5px; font-size: 15px; }
        .guide-text p { margin: 0; font-size: 13px; color: #b0b3b8; }
        .winners-container { margin: 20px 15px; background: #1a1d24; border-radius: 15px; height: 200px; overflow-y: hidden; position: relative; }
        .winners-scroll { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-row { padding: 10px 15px; border-bottom: 1px solid #262a33; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .winner-name { color: #b0b3b8; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; filter: grayscale(1); opacity: 0.6; }
        .trust-badges i { font-size: 30px; }
        .comments-section { padding: 0 15px; margin-top: 20px; }
        .comment-card { background: #1e222b; border-radius: 12px; padding: 15px; margin-bottom: 12px; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .comment-user { font-weight: 600; font-size: 14px; color: #ffd700; }
        .comment-stars { color: #ff8c00; font-size: 12px; }
        .comment-body { font-size: 13px; color: #d1d4d9; }
        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #262a33; }
        .faq-item h3 { margin: 0 0 10px; font-size: 15px; color: #ffd700; }
        .faq-item p { margin: 0; font-size: 14px; color: #b0b3b8; text-align: justify; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #b0b3b8; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-link { color: #b0b3b8; text-decoration: none; font-size: 13px; }
        .copyright { color: #666; font-size: 12px; margin-top: 10px; }