* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fef9f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background-color: #1a5f7a;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffd700;
            font-size: 22px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a5f7a;
            margin: 30px 0 20px;
            font-size: 34px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff9f1c;
        }
        h2 {
            color: #1a5f7a;
            margin: 30px 0 15px;
            font-size: 26px;
            padding-left: 10px;
            border-left: 4px solid #ff9f1c;
        }
        h3 {
            color: #1a5f7a;
            margin: 25px 0 12px;
            font-size: 22px;
        }
        p {
            margin-bottom: 18px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 18px;
            margin: 15px 10px 15px 0;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-login {
            background-color: #e67e22;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-top: 4px solid #1a5f7a;
        }
        .stat-value {
            font-size: 32px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 16px;
            color: #555;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 12px;
            font-weight: bold;
        }
        .攻略-section, .events-section, .community-section {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .攻略-list, .events-list, .community-topics {
            margin-top: 20px;
        }
        .攻略-item, .event-item, .topic-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        .攻略-item:last-child, .event-item:last-child, .topic-item:last-child {
            border-bottom: none;
        }
        ul {
            margin: 15px 0 25px 40px;
        }
        li {
            margin-bottom: 10px;
            font-size: 17px;
        }
        footer {
            background-color: #1a5f7a;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h3, .tags-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.15);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: rgba(255,215,0,0.2);
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 10px;
            font-size: 18px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 15px;
            color: #ddd;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a5f7a;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 24px;
                margin: 25px 0 12px;
            }
            h3 {
                font-size: 20px;
            }
            p, li {
                font-size: 16px;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
