* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f9f5ea;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #9b5100;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffdb58;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffdb58;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ffdb58;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #9b5100;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px;
            background-color: #fff9e6;
            border-radius: 10px;
            border-left: 6px solid #e67e22;
        }
        h2 {
            color: #c0392b;
            font-size: 2rem;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #d35400;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: '🌶️';
            position: absolute;
            left: -5px;
            top: 5px;
        }
        h3 {
            color: #8e44ad;
            font-size: 1.5rem;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #8e44ad;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #9b5100;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 45px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 32px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
            min-width: 200px;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
            border: 2px solid #219653;
        }
        .login-btn {
            background-color: #2980b9;
            color: white;
            border: 2px solid #1e6091;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(-2px);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin-bottom: 12px;
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #555;
            font-size: 0.95rem;
            max-width: 80%;
            margin: 0 auto;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #e67e22;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff9e6;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #9b5100;
            margin-bottom: 12px;
        }
        .stat-label {
            color: #666;
            font-size: 1.05rem;
        }
        .review-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-top: 4px solid #3498db;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: bold;
            color: #9b5100;
            font-size: 1.1rem;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .攻略-tips {
            background-color: #fff9e6;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            border: 1px dashed #e67e22;
        }
        .tip-item {
            margin-bottom: 25px;
            padding-left: 20px;
            border-left: 3px solid #e67e22;
        }
        .game-type-nav {
            margin: 45px 0 25px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-type-nav h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .game-type-nav a {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 12px;
            color: #2980b9;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        .game-type-nav a:hover {
            color: #9b5100;
            text-decoration: underline;
        }
        .tags-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .tags-container h3 {
            width: 100%;
            margin-top: 0;
            margin-bottom: 15px;
        }
        .tag {
            background-color: #f1c40f;
            padding: 9px 18px;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #f39c12;
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffdb58;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffdb58;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffdb58;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: 8px;
            margin: 40px 0;
            border: 1px solid #e67e22;
            text-align: center;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #9b5100;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                padding: 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .btn {
                width: 100%;
                padding: 14px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
