* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; 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; 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; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e297); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242832; height: 35px; display: flex; align-items: center; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #333; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .scrolling-text { white-space: nowrap; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1e222b; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; display: flex; flex-direction: column; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card span { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-content { background: #1a1d24; padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid #333; }
        .intro-content h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; }
        .intro-content p { font-size: 14px; color: #aaa; margin-bottom: 10px; }
        .winnings-box { background: #161a21; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #242832; font-size: 12px; }
        .winning-item .user { color: #d4af37; }
        .winning-item .amount { color: #4caf50; font-weight: bold; }
        .review-section { margin: 25px 0; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-user { font-weight: bold; font-size: 13px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin-top: 25px; }
        .faq-item { background: #1e222b; border-radius: 10px; margin-bottom: 10px; }
        .faq-question { padding: 12px 15px; font-size: 14px; font-weight: 600; cursor: pointer; color: #d4af37; border-bottom: 1px dotted #333; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #bbb; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 8px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.8); z-index: 1000; border-top: 1px solid #333; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-link { color: #888; font-size: 13px; transition: color 0.3s; }
        .footer-link:hover { color: #d4af37; }
        .copyright { color: #555; font-size: 12px; margin-top: 15px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.6; }
        .trust-badges i { font-size: 24px; }