* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #ff6b35;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffe0b2;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        .mobile-menu.active {
            display: flex;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            padding: 15px;
            background-color: #ffe0b2;
            border-radius: 8px;
        }
        h2 {
            color: #e67e22;
            font-size: 2rem;
            margin: 30px 0 15px;
            border-left: 4px solid #e67e22;
            padding-left: 15px;
        }
        h3 {
            color: #f39c12;
            font-size: 1.5rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
            text-align: center;
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            margin: 0 auto;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff3e0;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e67e22;
        }
        .review-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border-left: 3px solid #f39c12;
        }
        .reviewer {
            font-weight: bold;
            color: #d35400;
        }
        .tips-list {
            margin: 15px 0 15px 30px;
        }
        .tips-list li {
            margin-bottom: 10px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ffcc80;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: #555;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #e67e22;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #444;
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
