* { 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.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #e0e0e0; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { 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 #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e297); 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; border-bottom: 1px solid #2a2e38; }
        .announcement i { color: #d4af37; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #b0b0b0; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 18px; margin: 20px 0 15px; border-left: 4px solid #d4af37; padding-left: 10px; color: #f0f0f0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e38; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-content { background: #1e222d; padding: 20px; border-radius: 12px; margin: 25px 0; border: 1px solid #2a2e38; }
        .intro-content h1 { font-size: 22px; color: #d4af37; margin-bottom: 15px; }
        .intro-content p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winners-box { background: #1e222d; border-radius: 12px; padding: 15px; border: 1px solid #2a2e38; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .badge-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; border: 1px solid #2a2e38; }
        .badge-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .badge-item span { display: block; font-size: 11px; color: #e0e0e0; font-weight: 600; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1e222d; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e38; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: 600; color: #d4af37; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 15px; color: #f0f0f0; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; 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: #b0b0b0; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; color: #666; font-size: 13px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #b0b0b0; transition: color 0.3s; }
        .footer-links a:hover { color: #d4af37; }
        .copyright { margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }