/* 全局重置 - 极简样式，加速加载 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background: #fdf6e8;
    color: #3d2b1f;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* 导航栏 - 古风仙侠 */
.header {
    background: linear-gradient(to right, #4a2c16, #6d4425);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
.nav {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 28px;
    color: #f9e4b7;
    font-weight: bold;
}
.nav-menu {
    display: flex;
    gap: 40px;
}
.nav-menu li {
    color: #f9e4b7;
    font-size: 16px;
    transition: 0.3s;
}
.nav-menu li:hover {
    color: #fff;
}

/* Banner */
.banner {
    margin-top: 70px;
    width: 100%;
}
.banner-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* 通用板块 */
.section {
    width: 1200px;
    margin: 60px auto;
}
.title {
    text-align: center;
    font-size: 32px;
    color: #6d4425;
    margin-bottom: 40px;
    position: relative;
}
.title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #d4b886;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 游戏简介 */
.intro-content {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    padding: 0 50px;
    color: #5a4333;
}

/* 游戏下载 */
.download-section {
    background: #fff9f0;
    padding: 50px 0;
    border-radius: 10px;
}
.download-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}
.download-btn {
    width: 180px;
    height: 50px;
    background: linear-gradient(to bottom, #e8b965, #c99a50);
    color: #4a2c16;
    text-align: center;
    line-height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}
.download-btn:hover {
    background: #d4a850;
    color: #fff;
}
.download-tip {
    text-align: center;
    color: #886b55;
    font-size: 14px;
}

/* 游戏动态 */
.news-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px dashed #d4b886;
}
.news-date {
    color: #997a5b;
    font-size: 14px;
    margin-right: 20px;
}
.news-title {
    font-size: 17px;
    transition: 0.3s;
}
.news-title:hover {
    color: #b98644;
}

/* 游戏截图 */
.screenshot-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.screenshot-img {
    width: 580px;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #e8d3a8;
    transition: 0.3s;
}
.screenshot-img:hover {
    transform: scale(1.02);
}

/* 用户评价 */
.comment-section {
    background: #fff9f0;
    padding: 50px 0;
    border-radius: 10px;
}
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 30px;
}
.comment-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #d4b886;
}
.user-name {
    font-size: 17px;
    color: #6d4425;
    font-weight: bold;
    margin-bottom: 5px;
}
.user-star {
    color: #ffb100;
    margin-bottom: 8px;
}
.user-text {
    color: #5a4333;
    font-size: 16px;
}

/* 底部 */
.footer {
    background: #4a2c16;
    text-align: center;
    color: #f9e4b7;
    padding: 25px 0;
    margin-top: 50px;
}