:root {
            --primary-bg: #0f1218;
            --secondary-bg: #1a1d24;
            --accent-gold: #ffd700;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --button-grad: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
            --card-bg: #242832;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-main);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background-color: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: var(--button-grad);
            color: #000;
        }
        .banner {
            width: 100%;
            display: block;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            display: block;
        }
        .announcement {
            background: #242832;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--accent-gold);
            overflow: hidden;
        }
        .announcement i {
            flex-shrink: 0;
        }
        .marquee-content {
            white-space: nowrap;
            animation: scroll-left 20s linear infinite;
        }
        @keyframes scroll-left {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .section-title {
            padding: 20px 15px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 18px;
            color: var(--text-main);
            border-left: 4px solid var(--accent-gold);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
            border: 1px solid #333;
        }
        .game-card img {
            width: 100%;
            display: block;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        .game-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background: var(--secondary-bg);
            border-radius: 15px;
            border: 1px solid #333;
        }
        .intro-card h1 {
            font-size: 18px;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-dim);
            text-align: justify;
        }
        .winning-ticker {
            margin: 20px 15px;
            background: #111;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .ticker-list {
            animation: ticker-up 30s linear infinite;
        }
        @keyframes ticker-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .ticker-item {
            padding: 10px 15px;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .ticker-user { color: var(--accent-gold); }
        .ticker-win { color: #4caf50; font-weight: bold; }
        .reviews-section {
            padding: 10px 15px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .review-name { color: var(--accent-gold); font-weight: bold; }
        .stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section {
            padding: 20px 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--secondary-bg);
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-dim);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-dim);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        .nav-item.active, .nav-item:hover {
            color: var(--accent-gold);
        }
        footer {
            background: #0a0c10;
            padding: 30px 15px 20px;
            text-align: center;
            border-top: 1px solid #222;
        }
        .footer-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-row a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 20px;
        }
        .stat-bar {
            display: flex;
            justify-content: space-around;
            padding: 15px;
            background: var(--secondary-bg);
            margin: 10px 15px;
            border-radius: 12px;
            text-align: center;
        }
        .stat-item span { display: block; }
        .stat-val { font-size: 18px; font-weight: bold; color: var(--accent-gold); }
        .stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; }