* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: #d4af37; 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; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .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 #2a2e35; }
        .announcement i { color: #d4af37; }
        .scroll-text { overflow: hidden; white-space: nowrap; flex: 1; }
        .scroll-text p { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 8px; font-size: 18px; color: #f3d078; }
        .section-title::before { content: ''; display: block; width: 4px; height: 18px; background: #d4af37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); 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: 8px; text-align: center; font-size: 12px; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .platform-intro { padding: 20px 15px; background: #16191e; margin: 10px 0; border-radius: 15px; }
        .platform-intro h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: #a0a6b1; margin-bottom: 10px; }
        .winners-list { background: #1a1d24; margin: 0 12px 20px; border-radius: 12px; padding: 10px; height: 200px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2a2e35; font-size: 12px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews { padding: 0 12px 20px; }
        .review-card { background: #22262e; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 24px; color: #5c6370; }
        .stars { color: #f3d078; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 0 15px 30px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 14px; color: #f3d078; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 13px; color: #a0a6b1; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #2a2e35; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0a6b1; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-row a { font-size: 13px; color: #a0a6b1; transition: color 0.3s; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #5c6370; }
        .features-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 12px; }
        .feature-card { text-align: center; font-size: 11px; color: #a0a6b1; }
        .feature-card i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }