body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; margin: 0; padding: 0; line-height: 1.5; overflow-x: hidden; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323d; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register { padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #d4af37); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .ticker-wrap { background: #1e2126; padding: 8px 0; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #2d323d; }
        .ticker-content { display: inline-block; animation: ticker 25s linear infinite; color: #d4af37; font-size: 14px; }
        @keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 12px; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #252a34 100%); border-radius: 16px; border: 1px solid #3d4451; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; margin: 0 0 10px; color: #d4af37; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0a6b1; margin: 0; }
        .features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 10px 15px; }
        .feature-item { text-align: center; background: #1a1d24; padding: 15px 5px; border-radius: 12px; border: 1px solid #2d323d; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .feature-item span { font-size: 11px; color: #fff; display: block; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 10px; height: 200px; overflow-y: hidden; position: relative; border: 1px solid #2d323d; }
        .winning-scroll { animation: scrollUp 40s linear infinite; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #252a34; font-size: 12px; }
        .winning-name { color: #a0a6b1; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .review-card { background: #1a1d24; margin: 0 15px 15px; padding: 15px; border-radius: 12px; border-left: 4px solid #d4af37; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
        .review-user i { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #a0a6b1; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 12px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 14px; margin: 0 0 8px; color: #d4af37; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 13px; color: #a0a6b1; margin: 0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #a0a6b1; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 2px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #a0a6b1; text-decoration: none; font-size: 13px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-socials a { color: #d4af37; font-size: 20px; }
        .footer-copyright { font-size: 11px; color: #666; border-top: 1px solid #222; pt: 15px; }