* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #e0e0e0; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        .nav-wrapper { 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; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; margin-bottom: 15px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-radius: 8px; overflow: hidden; }
        .announcement i { color: #ffd700; }
        .scroll-text { white-space: nowrap; animation: scroll 20s linear infinite; font-size: 14px; color: #ccc; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        section { margin-bottom: 25px; }
        .section-title { font-size: 18px; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2d35; }
        .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: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .platform-intro { background: #1a1d24; padding: 20px; border-radius: 12px; border: 1px solid #2a2d35; }
        .platform-intro h1 { font-size: 20px; color: #ffd700; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #aaa; margin-bottom: 10px; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 10px; max-height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2a2d35; font-size: 13px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
        .feature-item { background: #1a1d24; padding: 15px; border-radius: 10px; text-align: center; border: 1px solid #2a2d35; }
        .feature-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 12px; color: #fff; }
        .reviews { display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2a2d35; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; color: #ffd700; font-size: 14px; }
        .review-rating { color: #ff9800; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-container { display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: #1a1d24; border-radius: 8px; padding: 12px; border: 1px solid #2a2d35; }
        .faq-item h3 { font-size: 14px; color: #fff; margin-bottom: 5px; cursor: pointer; }
        .faq-item p { font-size: 13px; color: #aaa; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; 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: #888; font-size: 12px; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #888; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #ffd700; font-size: 20px; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }