* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: #f3c15c; }
        .header-btns { display: flex; gap: 8px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #f3c15c; color: #f3c15c; font-size: 14px; background: transparent; cursor: pointer; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #f3c15c, #d4a017); color: #000; border: none; font-size: 14px; font-weight: bold; cursor: pointer; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box { margin: 15px; background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); border: 1px solid #3d4452; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .jackpot-title { font-size: 14px; color: #f3c15c; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243, 193, 92, 0.5); font-family: 'Courier New', monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #f3c15c; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; 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 p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #f3c15c; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3c15c; }
        .intro-card p { font-size: 14px; color: #b0b8c1; }
        .professional-elements { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: space-around; }
        .element-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: #8a94a1; }
        .element-item i { font-size: 24px; color: #f3c15c; }
        .guideline-section { padding: 15px; background: #161920; margin: 15px 0; }
        .guideline-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 10px; border: 1px solid #2d323e; }
        .guideline-item h3 { font-size: 16px; margin-bottom: 8px; color: #f3c15c; }
        .guideline-item p { font-size: 13px; color: #a0aab5; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #262a33; font-size: 13px; }
        .winner-name { color: #ffffff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 12px; border: 1px solid #2d323e; position: relative; }
        .comment-user { font-size: 14px; font-weight: bold; color: #f3c15c; margin-bottom: 5px; }
        .comment-text { font-size: 13px; color: #d1d5db; font-style: italic; }
        .faq-container { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; color: #f3c15c; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0aab5; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding: 0 5px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a94a1; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3c15c; }
        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { font-size: 14px; color: #8a94a1; }
        .footer-row a:hover { color: #f3c15c; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guideline-grid { grid-template-columns: 1fr 1fr; }
        }