* { 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; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; 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: #ffd700; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-reg { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .announcement { background: #242832; padding: 8px 15px; font-size: 13px; color: #ffd700; display: flex; align-items: center; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #333; }
        .announcement i { margin-right: 10px; }
        .scrolling-text { animation: scroll 20s linear infinite; display: inline-block; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        h1, h2, h3 { color: #ffd700; margin-bottom: 15px; }
        h1 { font-size: 20px; text-align: center; margin-top: 10px; }
        h2 { font-size: 18px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.3); transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-title { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(0,0,0,0.5); position: absolute; bottom: 0; width: 100%; }
        .intro-section { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #333; }
        .intro-section p { margin-bottom: 15px; font-size: 14px; color: #ccc; }
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .stat-item { background: #242832; padding: 10px; border-radius: 10px; text-align: center; }
        .stat-item div:first-child { font-size: 18px; color: #ffd700; font-weight: bold; }
        .stat-item div:last-child { font-size: 10px; color: #888; text-transform: uppercase; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; }
        .win-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .win-row:last-child { border-bottom: none; }
        .user-info { color: #888; }
        .amount { color: #4caf50; font-weight: bold; }
        .review-section { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #ffd700; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 13px; }
        .stars { color: #ffd700; }
        .review-text { font-size: 13px; font-style: italic; color: #ddd; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 12px; font-size: 13px; color: #aaa; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 10px; flex: 1; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; margin-top: 15px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.6; }
        .trust-badges i { font-size: 30px; }