body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #e0e0e0; margin: 0; padding: 0; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #c19a49; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-box strong { font-size: 18px; font-weight: normal; letter-spacing: 1px; color: #f1c40f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; border: none; font-weight: bold; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #f1c40f; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(135deg, #f1c40f, #d4af37); color: #1a1d24; }
        .btn:active { transform: scale(0.95); }
        main { max-width: 1000px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { padding: 20px 15px 10px; font-size: 20px; color: #f1c40f; display: flex; align-items: center; gap: 10px; }
        .section-title i { font-size: 18px; }
        .jackpot-card { margin: 15px; background: linear-gradient(135deg, #2c3e50, #1a1d24); border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #c19a49; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #f1c40f; text-shadow: 0 0 10px rgba(241,196,15,0.5); font-family: 'Courier New', monospace; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #2d3436; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .title { padding: 10px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(0,0,0,0.6); }
        .intro-card { margin: 20px 15px; background: #1a1d24; padding: 25px; border-radius: 15px; border-left: 5px solid #f1c40f; }
        .intro-card h1 { font-size: 20px; color: #f1c40f; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #bdc3c7; margin: 0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guide-item { background: #1e232b; padding: 15px; border-radius: 12px; display: flex; gap: 15px; align-items: center; }
        .guide-item i { font-size: 24px; color: #f1c40f; width: 30px; text-align: center; }
        .guide-text h3 { margin: 0 0 5px; font-size: 16px; color: #fff; }
        .guide-text p { margin: 0; font-size: 13px; color: #95a5a6; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 10px; height: 300px; overflow-y: auto; border: 1px solid #2d3436; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d3436; font-size: 13px; }
        .winning-item span:first-child { color: #f1c40f; }
        .winning-item span:last-child { color: #2ecc71; font-weight: bold; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .badge { background: #1e232b; padding: 15px 10px; border-radius: 10px; }
        .badge i { font-size: 20px; color: #f1c40f; margin-bottom: 8px; display: block; }
        .badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .comment-item { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; border: 1px solid #2d3436; }
        .comment-item .user { font-weight: bold; color: #f1c40f; margin-bottom: 5px; display: block; }
        .comment-item .stars { color: #f1c40f; font-size: 12px; margin-bottom: 8px; }
        .comment-item p { margin: 0; font-size: 13px; color: #bdc3c7; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1e232b; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #fff; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d3436; font-size: 15px; }
        .faq-answer { padding: 15px; font-size: 14px; color: #bdc3c7; background: #1a1d24; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #c19a49; z-index: 2000; box-shadow: 0 -5px 15px rgba(0,0,0,0.3); }
        .nav-item { text-decoration: none; color: #bdc3c7; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 5px; }
        .nav-item i { font-size: 20px; color: #f1c40f; }
        footer { background: #0b0d10; padding: 40px 15px 100px; text-align: center; border-top: 1px solid #2d3436; }
        .footer-row { margin-bottom: 25px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { color: #95a5a6; text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-row a:hover { color: #f1c40f; }
        .copyright { color: #7f8c8d; font-size: 12px; border-top: 1px solid #2d3436; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .comments-grid { grid-template-columns: 1fr 1fr; }
        }