* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; border-bottom: 1px solid #2d323d; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #ffffff; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right { display: flex; gap: 8px; }
        .btn { border: none; border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
        .btn-login { background: transparent; border: 1px solid #e2b45c; color: #e2b45c; }
        .btn-register { background: linear-gradient(135deg, #e2b45c 0%, #b8860b 100%); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { margin: 15px; background: linear-gradient(45deg, #1e222b 0%, #2a2f3a 100%); border: 1px solid #e2b45c; border-radius: 12px; padding: 15px; text-align: center; box-shadow: 0 0 15px rgba(226, 180, 92, 0.2); }
        .jackpot-label { color: #e2b45c; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #ffffff; margin: 5px 0; text-shadow: 0 0 10px rgba(255,255,255,0.3); font-family: 'Courier New', Courier, monospace; }
        .section-title { padding: 15px 15px 5px; display: flex; align-items: center; gap: 8px; font-size: 18px; color: #e2b45c; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 20px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #e2b45c; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; white-space: pre-line; }
        .professional-elements { padding: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .element-item { text-align: center; }
        .element-item i { font-size: 20px; color: #e2b45c; margin-bottom: 5px; }
        .element-item span { display: block; font-size: 10px; color: #888; }
        .guidelines { padding: 15px; }
        .guideline-box { background: #1a1d24; padding: 15px; border-radius: 10px; margin-bottom: 10px; border-left: 3px solid #e2b45c; }
        .guideline-box h3 { font-size: 15px; margin-bottom: 5px; color: #e2b45c; }
        .guideline-box p { font-size: 13px; color: #ccc; }
        .winning-ticker { margin: 15px; background: #1a1d24; border-radius: 10px; padding: 10px; height: 200px; overflow: hidden; position: relative; border: 1px solid #2d323d; }
        .ticker-list { animation: ticker-up 30s linear infinite; }
        @keyframes ticker-up { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .ticker-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #242831; font-size: 12px; }
        .user-id { color: #a0a6b1; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .comment-section { padding: 15px; display: flex; flex-direction: column; gap: 10px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .comment-name { color: #e2b45c; font-weight: bold; }
        .comment-rating { color: #ffd700; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #2d323d; }
        .faq-question { padding: 15px; cursor: pointer; font-size: 14px; font-weight: bold; color: #e2b45c; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 13px; color: #a0a6b1; border-top: 1px solid #242831; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 5px; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #8e949f; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #8e949f; text-decoration: none; font-size: 13px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-socials a { color: #e2b45c; font-size: 20px; }
        .copyright { color: #5c626d; font-size: 11px; }