:root {
            --primary-bg: #1a1d24;
            --card-bg: #242832;
            --accent-gold: #f3c15b;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --gradient-gold: linear-gradient(135deg, #f3c15b 0%, #d4a017 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            height: 60px;
            background: #12141a;
            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: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
        }
        .btn-register {
            background: var(--gradient-gold);
            color: #000;
        }
        .banner {
            width: 100%;
            display: block;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .announcement {
            background: #2a2e38;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }
        .announcement i {
            color: var(--accent-gold);
        }
        .marquee-wrapper {
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-text {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .container {
            padding: 15px;
        }
        .section-title {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .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: 13px;
            font-weight: normal;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid #333;
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
            text-align: justify;
        }
        .winning-board {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 25px;
            max-height: 300px;
            overflow: hidden;
            position: relative;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #333;
            font-size: 13px;
        }
        .winner-row span:last-child {
            color: #4caf50;
            font-weight: bold;
        }
        .review-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        .review-card {
            background: #2a2e38;
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .user-name {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .stars {
            color: #ffc107;
            font-size: 12px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-gray);
            font-style: italic;
        }
        .faq-section {
            margin-bottom: 25px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            margin-bottom: 8px;
            color: var(--accent-gold);
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: #12141a;
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid #333;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-gray);
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 2px;
        }
        footer {
            background: #12141a;
            padding: 30px 15px 80px;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: var(--text-gray);
        }
        .copyright {
            font-size: 12px;
            color: #666;
            margin-top: 20px;
        }
        .quick-stats {
            display: flex;
            justify-content: space-around;
            background: var(--card-bg);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 25px;
            text-align: center;
        }
        .stat-item h4 {
            font-size: 16px;
            color: var(--accent-gold);
        }
        .stat-item span {
            font-size: 11px;
            color: var(--text-gray);
        }