* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3d082; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; border: 1px solid #f3d082; color: #f3d082; }
        .btn-register { background-color: #f3d082; color: #1a1d24; }
        .banner-section { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-section img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-container { margin: 15px; background: linear-gradient(135deg, #b8860b, #f3d082, #b8860b); padding: 15px; border-radius: 12px; text-align: center; color: #1a1d24; }
        .jackpot-label { font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-value { font-size: 28px; font-weight: 800; font-family: monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f3d082; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px 15px; }
        .game-card { background: #1e222b; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; border: 1px solid #2d323d; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card span { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; background: #1e222b; padding: 20px; border-radius: 15px; border-left: 4px solid #f3d082; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #f3d082; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 15px; }
        .guide-item { background: #1e222b; padding: 15px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: #f3d082; font-size: 20px; margin-top: 3px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: #aaa; }
        .winners-section { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 10px; height: 200px; overflow-y: hidden; position: relative; }
        .winners-track { animation: scrollWinners 30s linear infinite; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-name { color: #f3d082; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: flex; justify-content: space-around; background: #16191f; margin-top: 15px; }
        .pro-item { text-align: center; font-size: 11px; color: #888; }
        .pro-item i { font-size: 24px; color: #f3d082; margin-bottom: 8px; display: block; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #f3d082; border: 1px solid #f3d082; }
        .comment-info h4 { font-size: 14px; }
        .comment-rating { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1e222b; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #f3d082; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #aaa; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #2d323d; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active, .nav-item:hover { color: #f3d082; }
        footer { background: #0a0c10; padding: 30px 15px 80px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
        }