* {box-sizing: border-box; margin: 0; padding: 0;}
        body {background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px;}
        header {background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e;}
        .brand {display: flex; align-items: center; gap: 8px;}
        .brand img {width: 25px; height: 25px; border-radius: 4px;}
        .brand strong {font-size: 16px; font-weight: normal; color: #d4af37;}
        .auth-buttons {display: flex; gap: 10px;}
        .btn {padding: 6px 15px; border-radius: 20px; border: none; font-size: 14px; cursor: pointer; transition: all 0.3s;}
        .btn-login {background: transparent; border: 1px solid #d4af37; color: #d4af37;}
        .btn-reg {background: linear-gradient(135deg, #d4af37, #f1c40f); color: #000; font-weight: bold;}
        .banner {width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block;}
        .banner img {width: 100%; height: 100%; object-fit: cover;}
        .announcement {background: #161920; padding: 8px 10px; display: flex; align-items: center; gap: 10px; overflow: hidden; border-bottom: 1px solid #2d323e;}
        .announcement i {color: #d4af37;}
        .scrolling-text {white-space: nowrap; animation: scroll 20s linear infinite;}
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container {padding: 15px;}
        h1 {font-size: 20px; color: #d4af37; margin-bottom: 15px; text-align: center;}
        h2 {font-size: 18px; margin: 20px 0 15px; border-left: 4px solid #d4af37; padding-left: 10px;}
        .game-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 12px;}
        .game-card {background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: transform 0.2s;}
        .game-card:active {transform: scale(0.95);}
        .game-card img {width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;}
        .game-card p {padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
        .platform-intro {background: #1a1d24; padding: 20px; border-radius: 12px; margin: 20px 0; border: 1px solid #2d323e;}
        .platform-intro p {font-size: 14px; color: #bdc3c7; margin-bottom: 10px;}
        .winners-box {background: #1a1d24; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto;}
        .winner-item {display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px;}
        .winner-item span:last-child {color: #2ecc71; font-weight: bold;}
        .reviews {margin: 20px 0;}
        .review-card {background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37;}
        .review-user {font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between;}
        .review-stars {color: #f1c40f;}
        .review-text {font-size: 13px; color: #bdc3c7;}
        .faq-item {background: #1a1d24; margin-bottom: 10px; border-radius: 8px; padding: 12px;}
        .faq-q {font-weight: bold; font-size: 14px; color: #d4af37; margin-bottom: 5px;}
        .faq-a {font-size: 13px; color: #bdc3c7;}
        .trust-badges {display: flex; justify-content: center; gap: 20px; margin: 30px 0; opacity: 0.6;}
        .trust-badges i {font-size: 30px;}
        .navigater {position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000;}
        .nav-item {text-decoration: none; color: #bdc3c7; font-size: 12px; display: flex; flex-direction: column; align-items: center; gap: 4px;}
        .nav-item i {font-size: 18px;}
        footer {background: #1a1d24; padding: 30px 15px 100px; border-top: 1px solid #2d323e; text-align: center;}
        .footer-links {display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px;}
        .footer-links a {color: #bdc3c7; text-decoration: none; font-size: 13px;}
        .copyright {font-size: 12px; color: #7f8c8d; margin-top: 20px;}