/* =========================
   追忆传奇 - 1.76 复古老传奇样式
   风格：暗红 / 火焰 / 旧UI
========================= */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url("bg.jpg") center top no-repeat fixed;
    background-size: cover;
    color: #e5c98b;
}

.section {
    background: rgba(15, 0, 0, 0.9);
}



}

/* 链接 */
a {
    color: #ffcc66;
    text-decoration: none;
}
a:hover {
    color: #ffd700;
}

/* 容器 */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* ===== 滚动公告 ===== */
.notice {
    background: #3a0000;
    border-bottom: 2px solid #990000;
    color: #ffcc66;
    padding: 10px 0;
    font-weight: bold;
}

/* ===== 头部 ===== */
header {
    text-align: center;
    padding: 60px 0 40px;
}
header h1 {
    font-size: 50px;
    color: #ffd700;
    text-shadow: 0 0 12px #ff0000;
}
header p {
    color: #fff;
    margin-top: 10px;
}

/* ===== 老传奇模块框 ===== */
.section {
    background: rgba(15, 0, 0, 0.92);
    border: 2px solid #7a0000;
    margin: 30px 0;
    padding: 25px;
    box-shadow: inset 0 0 30px #000;
}
.section h2 {
    color: #ffd700;
    border-bottom: 1px solid #7a0000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ===== 装备展示 ===== */
/* ===== 装备展示（自适应图片大小） ===== */
.equip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 135px;
}

.equip {
    text-align: center;
}

.equip:hover {
    box-shadow: 0 0 15px #ff0000;
}

.equip img {
    display: block;          /* 关键：变成块级 */
    margin: 0 auto 10px;     /* 水平居中 */
    max-width: 100%;
    height: auto;
    border: 2px solid #aa0000;
    background: #000;
}

.equip h3 {
    color: #ffcc66;
    margin-bottom: 6px;
}

.equip p {
    font-size: 14px;
    line-height: 1.8;
}

/* ===== 下载按钮 ===== */
.download {
    text-align: center;
}
.download a {
    display: inline-block;
    background: linear-gradient(#aa0000, #550000);
    color: #fff;
    padding: 15px 40px;
    font-size: 20px;
    border: 2px solid #ffcc66;
}
.download a:hover {
    background: linear-gradient(#ff0000, #770000);
}

/* ===== 页脚 ===== */
footer {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    font-size: 14px;
}

/* ===== 手机自适应 ===== */
@media (max-width: 768px) {
header h1 {
        font-size: 36px;
    }
    .equip-list {
        flex-direction: column;
    }
}
/* ===== 游戏玩法 字体颜色 ===== */
.gameplay p {
    color: #ffffff;   /* 暖金色，老传奇最常用 */
}

/* ===== 页面整体居中 ===== */
.container {
    margin: 0 auto;
    text-align: center;
}

.section {
    text-align: center;
}

.equip {
    text-align: center;
}
