* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323e; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #d4af37; }
        .btn-reg { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        .jackpot-section { background: linear-gradient(45deg, #2c1a4d, #1a1d24); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; border: 1px solid #d4af37; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #f3d078; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2d323e; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f3d078; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 8px; font-size: 12px; text-align: center; border: 1px solid #2d323e; }
        .guide-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }
        .winning-box { background: #1a1d24; border-radius: 12px; padding: 15px; height: 200px; overflow-y: auto; border: 1px solid #2d323e; margin-bottom: 25px; }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .win-record span:last-child { color: #4caf50; font-weight: bold; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .feature-item { text-align: center; font-size: 11px; color: #aaa; }
        .feature-item i { font-size: 20px; color: #d4af37; margin-bottom: 5px; display: block; }
        .comment-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323e; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .rating { color: #f3d078; font-size: 12px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 8px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-question { padding: 12px 15px; font-weight: bold; cursor: pointer; color: #f3d078; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 12px; font-size: 13px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #aaa; }
        .nav-item i { font-size: 18px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; }
        .footer-links a { color: #aaa; }
        .copyright { font-size: 11px; color: #666; margin-top: 20px; }