* { 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; }
        a { text-decoration: none; color: inherit; }
        header { background: linear-gradient(180deg, #1a1d24 0%, #0f1218 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; 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: #ffd700; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #4a4e58; }
        .btn-register { background: linear-gradient(90deg, #ffcc00, #ffaa00); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; border-bottom: 1px solid #2a2e37; }
        .announcement i { color: #ffcc00; margin-right: 10px; }
        .marquee-wrapper { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee-text { display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #ced4da; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
        .section-title span { color: #ffcc00; font-size: 14px; font-weight: normal; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e9ecef; }
        .platform-intro { padding: 20px 15px; background: #16191f; margin: 20px 0; border-radius: 15px; margin: 15px; border-left: 4px solid #ffcc00; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: #ffcc00; }
        .platform-intro p { font-size: 14px; color: #adb5bd; margin-bottom: 10px; }
        .winners-section { background: #1a1d24; margin: 15px; border-radius: 15px; padding: 15px; border: 1px solid #2a2e37; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: #888ea8; }
        .winner-amount { color: #00ff88; font-weight: 600; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; flex-wrap: wrap; gap: 15px; }
        .trust-item { text-align: center; font-size: 12px; color: #adb5bd; flex: 1; min-width: 80px; }
        .trust-item i { font-size: 24px; color: #ffcc00; display: block; margin-bottom: 5px; }
        .reviews-section { padding: 10px 15px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2a2e37; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #343a40; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #ffcc00; }
        .star-rating { color: #ffcc00; font-size: 12px; }
        .review-content { font-size: 13px; color: #ced4da; }
        .faq-section { padding: 10px 15px; margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .faq-question { font-weight: 600; font-size: 14px; margin-bottom: 5px; color: #ffffff; display: flex; align-items: center; gap: 8px; }
        .faq-answer { font-size: 13px; color: #adb5bd; }
        .navigater { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888ea8; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #ffcc00; }
        footer { padding: 30px 15px 100px; text-align: center; background: #0a0c10; border-top: 1px solid #2a2e37; }
        .footer-links { margin-bottom: 20px; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-row a { font-size: 13px; color: #888ea8; transition: color 0.3s; }
        .footer-row a:hover { color: #ffcc00; }
        .footer-social { font-size: 20px; margin-top: 10px; }
        .footer-copy { font-size: 12px; color: #495057; margin-top: 20px; }
        .gcash-badge { display: inline-block; background: #007bff; color: white; padding: 2px 8px; border-radius: 4px; font-size: 10px; margin-left: 5px; vertical-align: middle; }