* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .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: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e297); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle at center, #2c313c, #1a1d24); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #3e4451; }
        .jackpot-title { color: #d4af37; 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(212, 175, 55, 0.5); font-family: monospace; }
        .section-title { padding: 15px 15px 10px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { margin: 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #fff; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; line-height: 1.6; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px 20px; }
        .guide-item { background: #1e222b; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; border: 1px solid #2d323d; }
        .guide-item i { font-size: 24px; color: #d4af37; width: 30px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; color: #fff; }
        .guide-text p { font-size: 13px; color: #888; }
        .winners-box { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #262a33; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; }
        .pro-item i { font-size: 30px; color: #d4af37; margin-bottom: 10px; display: block; }
        .pro-item span { font-size: 12px; color: #a0a6b1; }
        .comments { padding: 0 15px 20px; }
        .comment-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user .avatar { width: 35px; height: 35px; border-radius: 50%; background: #3e4451; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }
        .comment-stars { color: #f39c12; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #fff; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
        .faq-item h3::before { content: "Q:"; color: #d4af37; font-weight: bold; }
        .faq-item p { font-size: 14px; color: #88909b; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #88909b; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0b0d10; padding: 30px 15px 20px; border-top: 1px solid #1a1d24; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #88909b; }
        .footer-copy { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }