* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c3e50;
            background-color: #f8f5f0;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #165dff;
            padding: 12px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 22px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        h1 {
            color: #165dff;
            font-size: 2.4rem;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 4px solid #ffd700;
        }
        h2 {
            color: #165dff;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffd700;
        }
        h3 {
            color: #165dff;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #34495e;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 10px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 18px 0;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e0e0e0;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: #fff9e6;
            border-left: 4px solid #f39c12;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        .攻略-section {
            background-color: #e8f4ea;
            padding: 28px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .活动-section {
            background-color: #ffebee;
            padding: 28px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .community-section {
            background-color: #f0f7ff;
            padding: 28px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        footer {
            background-color: #165dff;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 22px;
            color: #ffd700;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #3498db;
            color: white;
            padding: 6px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #165dff;
                padding: 25px;
                gap: 18px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .stats-box, .攻略-section, .活动-section, .community-section {
                padding: 20px;
            }
            .footer-container {
                gap: 25px;
            }
        }
