/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* 头部样式 */
.header {
    width: 100%;
    height: 80px;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo {
    float: left;
    padding: 15px 0 15px 50px;
}

.logo img {
    height: 50px;
}

.nav {
    float: right;
    margin-right: 50px;
}

.nav ul {
    list-style: none;
}

.nav ul li {
    float: left;
    line-height: 80px;
    margin: 0 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #e6c068;
}

.nav ul li.active a {
    color: #e6c068;
}

/* Banner样式 */
.banner {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 24px;
}

/* 主要内容样式 */
.main-content {
    width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* 游戏简介样式 */
.game-intro {
    margin-bottom: 50px;
}

.game-intro h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.intro-content {
    position: relative;
}

.intro-content img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    float: left;
    margin-right: 30px;
    border-radius: 10px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

/* 游戏特色预览样式 */
.features-preview h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.feature-items {
    overflow: hidden;
}

.feature-item {
    width: 33.33%;
    float: left;
    padding: 0 15px;
    text-align: center;
}

.feature-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 页脚样式 */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    font-size: 14px;
    color: #999;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
} 