* { margin: 0; padding: 0; box-sizing: border-box; }
        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; }
        ul { list-style: none; }
        .container { max-width: 600px; 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 #2c313c; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .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; color: #ffd700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .ticker-container { background: #13161c; padding: 8px 0; overflow: hidden; display: flex; align-items: center; border-bottom: 1px solid #2c313c; }
        .ticker-icon { padding: 0 10px; color: #ffd700; z-index: 2; background: #13161c; }
        .ticker-text { white-space: nowrap; animation: scroll-left 20s linear infinite; font-size: 13px; color: #ced4da; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { font-size: 18px; margin: 20px 0 15px; color: #ffd700; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2c313c; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-content { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #ffd700; }
        .intro-content h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; }
        .intro-content p { font-size: 14px; color: #b0b3b8; margin-bottom: 10px; }
        .winnings-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2c313c; font-size: 13px; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2c313c; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: 600; color: #ffd700; font-size: 14px; }
        .stars { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #ced4da; font-style: italic; }
        .faq-container { background: #1a1d24; padding: 15px; border-radius: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2c313c; padding-bottom: 10px; }
        .faq-question { font-weight: 600; color: #ffd700; font-size: 15px; margin-bottom: 5px; cursor: pointer; }
        .faq-answer { font-size: 14px; color: #b0b3b8; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2c313c; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #b0b3b8; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:hover { color: #ffd700; }
        footer { background: #0f1218; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #6c757d; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-link { color: #ced4da; }
        .copyright { margin-top: 10px; font-size: 12px; }
        .cta-box { background: linear-gradient(90deg, #ffd700, #b8860b); padding: 20px; border-radius: 15px; text-align: center; margin: 25px 0; color: #000; }
        .cta-box h3 { font-size: 20px; margin-bottom: 10px; }
        .cta-btn { background: #000; color: #ffd700; padding: 10px 25px; border-radius: 25px; display: inline-block; font-weight: bold; margin-top: 10px; }