* { 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; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .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: #f1f1f1; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #c9a44c; border: 1px solid #c9a44c; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #c9a44c 100%); color: #1a1d24; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .jackpot-section { background: radial-gradient(circle, #2a2e37 0%, #1a1d24 100%); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #c9a44c; margin: 20px 0; position: relative; overflow: hidden; }
        .jackpot-title { color: #c9a44c; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(201, 164, 76, 0.5); font-family: monospace; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: #f3d078; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; padding: 25px; border-radius: 15px; border: 1px solid #2a2e37; margin: 20px 0; }
        .intro-card h1 { font-size: 22px; color: #c9a44c; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #cccccc; text-align: justify; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .badge-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; font-size: 12px; }
        .badge-item i { font-size: 24px; color: #c9a44c; margin-bottom: 8px; display: block; }
        .guidelines { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; }
        .guideline-item { margin-bottom: 15px; border-bottom: 1px solid #2a2e37; padding-bottom: 10px; }
        .guideline-item:last-child { border-bottom: none; }
        .guideline-item h3 { font-size: 16px; color: #f3d078; margin-bottom: 5px; }
        .guideline-item p { font-size: 14px; color: #aaaaaa; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 300px; overflow-y: auto; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .comment-grid { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 4px solid #c9a44c; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 20px; color: #aaaaaa; }
        .comment-user span { font-weight: bold; font-size: 14px; }
        .comment-text { font-size: 14px; color: #cccccc; font-style: italic; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #f3d078; cursor: pointer; border-bottom: 1px solid #2a2e37; font-size: 15px; }
        .faq-answer { padding: 15px; font-size: 14px; color: #cccccc; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #aaaaaa; }
        .nav-item i { font-size: 20px; }
        footer { background: #11141a; padding: 30px 15px 100px; border-top: 1px solid #2a2e37; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 14px; }
        .footer-links a { color: #aaaaaa; }
        .copyright { font-size: 12px; color: #666666; margin-top: 20px; }