* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8B4513, #CD853F);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #FFD700;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        nav {
            display: block;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #FFD700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8B4513;
            font-size: 2.4rem;
            margin: 30px 0 40px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #FFD700;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #CD853F;
            font-size: 1.8rem;
            margin: 40px 0 25px;
            padding-left: 15px;
            border-left: 4px solid #228B22;
        }
        h3 {
            color: #228B22;
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
        }
        .btn {
            padding: 12px 25px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #228B22;
            color: white;
        }
        .download-btn:hover {
            background-color: #006400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #CD853F;
            color: white;
        }
        .login-btn:hover {
            background-color: #8B4513;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0 40px;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .stat-card {
            background-color: white;
            padding: 25px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #CD853F;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1rem;
            color: #666;
        }
        .feature-list {
            margin: 25px 0 35px;
            padding-left: 40px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
        }
        .feature-list li:before {
            content: "•";
            color: #228B22;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        blockquote {
            border-left: 4px solid #CD853F;
            padding: 15px 20px;
            margin: 25px 0;
            font-style: italic;
            color: #444;
            background-color: rgba(205, 133, 63, 0.05);
            border-radius: 0 5px 5px 0;
        }
        .review-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        .reviewer {
            font-weight: bold;
            font-size: 1.1rem;
            color: #2c3e50;
        }
        .review-rating {
            color: #FFD700;
            font-size: 1.1rem;
        }
        footer {
            background-color: #8B4513;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-categories {
            margin-bottom: 35px;
        }
        .game-categories h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #FFD700;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-links a {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.1);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .category-links a:hover {
            background-color: #CD853F;
        }
        .tag-section {
            margin-bottom: 35px;
        }
        .tag-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #FFD700;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-links a {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.08);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: rgba(255,215,0,0.2);
        }
        .recommendation {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 35px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        .highlight {
            background-color: rgba(255,215,0,0.2);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: bold;
        }
        .tips-box {
            background-color: rgba(34, 139, 34, 0.1);
            border-left: 4px solid #228B22;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 8px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
