* {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: linear-gradient(180deg, #1a1d24 0%, #0f1218 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; display: flex; align-items: center; justify-content: space-between;}
        .header-left {display: flex; align-items: center; gap: 8px;}
        .header-left img {width: 25px; height: 25px; border-radius: 4px;}
        .header-left strong {font-size: 16px; font-weight: normal; color: #f1f1f1;}
        .header-right {display: flex; gap: 10px;}
        .btn {padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: transform 0.2s;}
        .btn-login {background: transparent; color: #d4af37; border: 1px solid #d4af37;}
        .btn-register {background: linear-gradient(90deg, #d4af37 0%, #f9e29a 100%); color: #000;}
        .btn:active {transform: scale(0.95);}
        .banner-container {width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer;}
        .banner-container img {width: 100%; height: 100%; object-fit: cover;}
        .announcement {background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #2d323e;}
        .announcement i {color: #d4af37;}
        .ticker-wrapper {flex: 1; overflow: hidden;}
        .ticker {display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc;}
        @keyframes marquee {0% {transform: translateX(100%);} 100% {transform: translateX(-100%);}}
        section {padding: 20px 15px;}
        .section-title {font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #f1f1f1;}
        .section-title i {color: #d4af37;}
        .game-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 12px;}
        .game-card {background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: background 0.3s;}
        .game-card:active {background: #252a35;}
        .game-card a {text-decoration: none; color: inherit;}
        .game-card img {width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;}
        .game-info {padding: 10px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
        .platform-intro {background: #1a1d24; border-radius: 15px; padding: 20px; margin: 10px 0; border: 1px solid #2d323e;}
        .platform-intro h1 {font-size: 20px; color: #d4af37; margin-bottom: 10px;}
        .platform-intro p {font-size: 14px; color: #b0b0b0;}
        .winners-box {background: #1a1d24; border-radius: 15px; padding: 15px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323e;}
        .winner-row {display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px;}
        .winner-row:last-child {border-bottom: none;}
        .winner-name {color: #f1f1f1;}
        .winner-amount {color: #4caf50; font-weight: bold;}
        .trust-badges {display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center;}
        .badge-item {font-size: 11px; color: #d4af37;}
        .badge-item i {font-size: 24px; display: block; margin-bottom: 5px;}
        .reviews-section {background: #0f1218; border-radius: 15px;}
        .review-card {background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #d4af37;}
        .review-header {display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 12px;}
        .stars {color: #ffc107;}
        .review-content {font-size: 13px; font-style: italic; color: #ccc;}
        .faq-item {background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden;}
        .faq-question {padding: 15px; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; cursor: pointer;}
        .faq-answer {padding: 0 15px 15px; font-size: 13px; color: #b0b0b0;}
        .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;}
        .nav-item {text-decoration: none; color: #b0b0b0; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px;}
        .nav-item i {font-size: 18px;}
        .nav-item:active {color: #d4af37;}
        footer {background: #0f1218; padding: 30px 15px 100px; text-align: center; font-size: 12px; border-top: 1px solid #2d323e;}
        .footer-links {display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px;}
        .footer-links a {color: #b0b0b0; text-decoration: none;}
        .copyright {margin-top: 15px; color: #666;}