* { margin: 0; padding: 0; box-sizing: border-box; }
        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; }
        header { background-color: #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 #2d323e; }
        .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: #ffd700; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { 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-color: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-register { background-color: #ffd700; color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-content: cover; }
        .announcement { background: #252932; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #ffd700; }
        .announcement marquee { font-size: 13px; color: #ccc; }
        .container { padding: 15px; }
        h1, h2, h3 { color: #ffd700; margin-bottom: 15px; text-align: center; }
        h1 { font-size: 20px; text-transform: uppercase; }
        h2 { font-size: 18px; border-left: 4px solid #ffd700; padding-left: 10px; text-align: left; margin-top: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .platform-intro { background: #1a1d24; padding: 20px; border-radius: 15px; margin: 20px 0; border: 1px solid #2d323e; }
        .platform-intro p { font-size: 14px; color: #b0b3b8; margin-bottom: 15px; }
        .winners-section { background: #1a1d24; border-radius: 15px; padding: 15px; margin: 20px 0; border: 1px solid #2d323e; }
        .winner-list { height: 250px; overflow-y: auto; scrollbar-width: none; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-item span:first-child { color: #ffd700; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .feature-box { background: linear-gradient(145deg, #1a1d24, #252932); padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #2d323e; }
        .feature-box i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feature-box p { font-size: 12px; font-weight: bold; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #ffd700; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { color: #ffd700; font-size: 12px; }
        .review-content { font-size: 13px; font-style: italic; color: #ccc; }
        .faq-section { background: #1a1d24; padding: 20px; border-radius: 15px; margin: 25px 0; border: 1px solid #2d323e; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2d323e; padding-bottom: 10px; }
        .faq-item h3 { font-size: 15px; text-align: left; color: #ffffff; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; 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: #b0b3b8; transition: 0.3s; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 20px; text-align: center; font-size: 13px; color: #666; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { color: #b0b3b8; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { color: #444; margin-top: 10px; }