:root {
            --bg-dark: #0f1116;
            --card-bg: #1d2129;
            --primary-gold: #f3ba2f;
            --text-white: #ffffff;
            --text-gray: #8a919e;
            --gradient-gold: linear-gradient(135deg, #f3ba2f 0%, #d4a017 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-white); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { height: 60px; background: #1a1d24; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; 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; text-decoration: none; color: var(--text-white); }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; text-decoration: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--gradient-gold); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; height: 36px; display: flex; align-items: center; overflow: hidden; padding: 0 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: var(--primary-gold); margin-right: 10px; font-size: 14px; }
        .scroll-text { white-space: nowrap; animation: scroll-left 20s linear infinite; font-size: 13px; color: var(--text-gray); }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: var(--text-white); transition: 0.3s; display: block; }
        .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; }
        .intro-card { background: var(--card-bg); border-radius: 16px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-gray); text-align: justify; }
        .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .feature-item { background: var(--card-bg); padding: 15px 10px; border-radius: 12px; text-align: center; }
        .feature-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 12px; color: var(--text-white); }
        .winners-box { background: var(--card-bg); border-radius: 16px; padding: 15px; margin-bottom: 25px; height: 250px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-row:last-child { border: none; }
        .winner-name { color: var(--text-gray); }
        .winner-amount { color: var(--primary-gold); font-weight: bold; }
        .reviews-box { margin-bottom: 25px; }
        .review-card { background: var(--card-bg); border-radius: 16px; padding: 15px; margin-bottom: 12px; position: relative; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-stars { color: #ffc107; font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--card-bg); border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 10px; color: var(--primary-gold); display: flex; align-items: flex-start; gap: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: var(--text-gray); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) i { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 24px; }
        footer { padding: 30px 15px; background: #0a0c10; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .footer-bottom { border-top: 1px solid #2d323e; padding-top: 20px; font-size: 12px; color: #5c626d; }