* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        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; 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; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-reg { background: linear-gradient(180deg, #f3ba2f 0%, #d49a17 100%); color: #000; }
        .btn-login:active, .btn-reg:active { transform: scale(0.95); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle at center, #2c313c 0%, #1a1d24 100%); border: 2px solid #f3ba2f; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; }
        .jackpot-title { font-size: 14px; color: #f3ba2f; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #f3ba2f; font-family: monospace; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 20px 0 15px; }
        .section-header i { color: #f3ba2f; font-size: 20px; }
        .section-header h2 { font-size: 18px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.3s; border: 1px solid #2a2e37; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; line-height: 1.6; }
        .guideline-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guideline-item { background: #1a1d24; padding: 15px; border-radius: 12px; display: flex; gap: 15px; align-items: flex-start; }
        .guideline-item i { font-size: 24px; color: #f3ba2f; margin-top: 3px; }
        .guideline-content h3 { font-size: 16px; margin-bottom: 5px; }
        .guideline-content p { font-size: 13px; color: #9da0a5; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 20px; height: 250px; overflow-y: auto; scrollbar-width: none; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #f3ba2f; }
        .winner-prize { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; background: #1a1d24; padding: 15px; border-radius: 12px; margin: 20px 0; text-align: center; }
        .pro-item i { display: block; font-size: 20px; color: #f3ba2f; margin-bottom: 5px; }
        .pro-item span { font-size: 11px; color: #9da0a5; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #30353e; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f3ba2f; }
        .comment-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 14px; color: #b0b3b8; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #9da0a5; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; }
        .foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .foot-links a { color: #9da0a5; font-size: 13px; }
        .copyright { font-size: 12px; color: #5c6068; border-top: 1px solid #1a1d24; padding-top: 20px; }