/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

a:hover {
    color: #ffd700;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6a00, #ff0000);
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
}

/* 头部导航 */
.header {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav a {
    margin-left: 30px;
    font-size: 16px;
    font-weight: 500;
}

.nav a.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
}

/* Banner */
.banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.banner-text p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* 游戏特色 */
.game-feature {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffd700;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background-color: #ff6a00;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    flex: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.feature-item img {
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff6a00;
}

/* 下载区域 */
.download {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../631599/bg.jpg');
    background-size: cover;
    text-align: center;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.download-btn {
    font-size: 18px;
    padding: 15px 40px;
}

/* 资讯详情 */
.news-detail {
    padding: 60px 0;
    background-color: #1a1a1a;
    min-height: 600px;
}

.news-title {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
    text-align: center;
}

.news-info {
    color: #999;
    text-align: center;
    margin-bottom: 30px;
}

.news-img {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
}

.news-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content h3 {
    font-size: 22px;
    color: #ff6a00;
    margin: 30px 0 15px;
}

.back-btn {
    display: block;
    width: 150px;
    margin: 40px auto 0;
}

/* 底部 */
.footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-list {
        flex-direction: column;
    }
    .download-btns {
        flex-direction: column;
        align-items: center;
    }
    .nav a {
        margin-left: 15px;
    }
    .banner-text h1 {
        font-size: 32px;
    }
}