:root {
            --primary-bg: #0f1218;
            --card-bg: #1a1d24;
            --accent-gold: #d4af37;
            --accent-blue: #1e3a8a;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-white); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #161920; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d3748; display: flex; align-items: center; justify-content: space-between; }
        .header-left { display: flex; align-items: center; text-decoration: none; color: inherit; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; text-transform: lowercase; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid var(--accent-gold); color: var(--accent-gold); font-size: 14px; text-decoration: none; background: transparent; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: var(--btn-grad); color: #000; font-size: 14px; font-weight: bold; text-decoration: none; border: none; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; position: relative; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 10px; display: flex; align-items: center; border-bottom: 1px solid #2d3748; }
        .announcement i { color: var(--accent-gold); margin-right: 10px; }
        .marquee { overflow: hidden; white-space: nowrap; font-size: 13px; color: var(--text-gray); }
        .marquee span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .content-container { padding: 15px; }
        .section-title { font-size: 18px; color: var(--accent-gold); margin-bottom: 15px; display: flex; align-items: center; font-weight: 600; text-transform: uppercase; }
        .section-title i { margin-right: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid #2d3748; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-title { font-size: 12px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-text { background: var(--card-bg); padding: 15px; border-radius: var(--radius); margin-bottom: 25px; color: var(--text-gray); font-size: 14px; border: 1px solid #2d3748; }
        .intro-text h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; }
        .winning-ticker { background: var(--card-bg); border-radius: var(--radius); padding: 10px; height: 180px; overflow-y: auto; border: 1px solid #2d3748; margin-bottom: 25px; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d3748; font-size: 13px; }
        .win-user { color: var(--text-white); }
        .win-amount { color: #48bb78; font-weight: bold; }
        .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .stat-box { background: var(--card-bg); padding: 15px 10px; border-radius: var(--radius); text-align: center; border: 1px solid #2d3748; }
        .stat-value { color: var(--accent-gold); font-size: 18px; font-weight: bold; display: block; }
        .stat-label { color: var(--text-gray); font-size: 11px; text-transform: uppercase; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; border: 1px solid #2d3748; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; color: var(--accent-gold); font-size: 14px; }
        .review-stars { color: #f6e05e; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-gray); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--card-bg); border-radius: var(--radius); margin-bottom: 8px; padding: 15px; border: 1px solid #2d3748; }
        .faq-question { font-weight: bold; color: var(--text-white); margin-bottom: 5px; font-size: 14px; }
        .faq-answer { color: var(--text-gray); font-size: 13px; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #161920; border-top: 1px solid #2d3748; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-gray); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; color: var(--text-gray); }
        .nav-item:last-child i { color: var(--accent-gold); }
        footer { padding: 30px 15px 20px; background: #0a0c10; text-align: center; border-top: 1px solid #2d3748; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .contact-row { margin-bottom: 20px; }
        .contact-row a { color: var(--accent-gold); margin: 0 10px; font-size: 18px; }
        .copyright { color: #4a5568; font-size: 12px; }