/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background: #111;
    color: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: #fff;
}
ul {
    list-style: none;
}

/* 导航 */
.navbar {
    background: #000;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}
.nav-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff477e;
}
.logo span {
    font-size: 14px;
    color: #ccc;
    margin-left: 8px;
}
.nav-menu {
    display: flex;
    gap: 25px;
}
.nav-menu a {
    font-size: 15px;
    transition: 0.3s;
}
.nav-menu a:hover {
    color: #ff477e;
}

/* 主体容器 */
.container {
    width: 1200px;
    margin: 90px auto 0;
    padding: 40px 0;
}
.section {
    margin-bottom: 60px;
}
.title {
    font-size: 26px;
    margin-bottom: 25px;
    color: #ff477e;
    border-left: 4px solid #ff477e;
    padding-left: 12px;
}
.content {
    font-size: 15px;
    color: #eee;
    line-height: 1.8;
}
.content p {
    margin-bottom: 12px;
}

/* 游戏简介缩略图 400×300 */
.intro-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}
.intro-img {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
}
.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* 下载 */
.download-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.down-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    width: 32%;
    min-width: 280px;
}
.down-item h3 {
    margin-bottom: 15px;
    font-size: 17px;
}
.down-btn {
    display: inline-block;
    background: #ff477e;
    padding: 8px 16px;
    border-radius: 5px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}
.down-btn:hover {
    background: #e03060;
}

/* 玩法 */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    width: 48%;
    min-width: 280px;
}
.feature-item h4 {
    color: #ff477e;
    margin-bottom: 8px;
}

/* 动态 */
.news-item {
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.news-item span {
    color: #ff477e;
    font-size: 14px;
    white-space: nowrap;
}

/* 截图 */
.screenshot-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.shot-img {
    width: 24%;
    min-width: 220px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.shot-img:hover {
    transform: scale(1.03);
}

/* 用户评价 */
.comment-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.comment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.comment-item .name {
    color: #ff477e;
    font-weight: bold;
}
.comment-item .star {
    color: #ffcc00;
    font-size: 16px;
}
.comment-item .text {
    color: #eee;
    line-height: 1.7;
}

/* 底部 */
footer {
    background: #000;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
    color: #888;
}