* { 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.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323e; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffcc00; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #4a5162; }
        .btn-register { background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #ffcc00; }
        .scrolling-text { flex: 1; overflow: hidden; white-space: nowrap; position: relative; }
        .scrolling-text span { display: inline-block; animation: scroll 20s linear infinite; padding-left: 100%; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #ffcc00; border-left: 4px solid #ffcc00; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #242933; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #12151b); border-radius: 15px; padding: 20px; border: 1px solid #2d323e; margin-bottom: 25px; text-align: center; }
        .intro-card h1 { font-size: 20px; color: #ffcc00; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a8b9; line-height: 1.6; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winning-item:last-child { border-bottom: none; }
        .winning-user { color: #a0a8b9; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 15px; border-left: 4px solid #ffcc00; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; color: #ffcc00; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-content { font-size: 13px; color: #a0a8b9; font-style: italic; }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-question { padding: 15px; cursor: pointer; font-size: 14px; font-weight: 600; color: #ffcc00; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0a8b9; line-height: 1.6; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .feature-item { padding: 15px 5px; background: #1a1d24; border-radius: 10px; }
        .feature-item i { font-size: 20px; color: #ffcc00; margin-bottom: 8px; }
        .feature-item span { font-size: 11px; display: block; color: #a0a8b9; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #a0a8b9; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { color: #ffcc00; font-size: 24px; margin-top: -10px; background: #1a1d24; padding: 5px; border-radius: 50%; }
        footer { background: #0b0d11; 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; }
        .footer-links a { color: #a0a8b9; font-size: 13px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #ffcc00; font-size: 20px; }
        .copyright { color: #5c6371; font-size: 12px; margin-top: 10px; border-top: 1px solid #1a1d24; padding-top: 15px; }