* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #1a1210;
    color: #fff;
    min-width: 1920px;
}

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

/* 顶部导航栏 */
.top-nav {
    background: linear-gradient(to bottom, #5a0000, #3a0000);
    border-bottom: 1px solid #8b4513;
    height: 40px;
    line-height: 40px;
}

.nav-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
}

.nav-item {
    font-size: 14px;
    color: #ffd700;
    transition: color 0.3s;
}

.nav-item:hover, .nav-item.active {
    color: #ff6b35;
}

.nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Hero横幅 - 视频背景 */
.hero-banner {
    width: 1920px;
    height: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: url('../images/bg.jpg') center center no-repeat;
    background-size: cover;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-inner {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.banner-logo {
    position: absolute;
    top: 30px;
    left: 0;
}

.banner-logo img {
    height: 120px;
}

.banner-slogan-top {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-slogan-top .line {
    color: #ffd700;
    font-size: 20px;
}

.banner-slogan-top .text {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.banner-slogan-bottom {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-slogan-bottom .big-text {
    font-size: 60px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 100, 0, 0.8), 0 0 40px rgba(255, 50, 0, 0.5);
    font-family: "STKaiti", "KaiTi", serif;
}

/* 中间内容区 */
.main-content {
    background-color: #1a1210;
    padding: 40px 0;
}

.content-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

/* 左侧红色飘带按钮 */
.sidebar-left {
    width: 160px;
}

.red-ribbon {
    position: relative;
}

.ribbon-top {
    background: linear-gradient(to bottom, #c41e1e, #8b0000);
    padding: 20px 15px;
    text-align: center;
    border: 2px solid #ffd700;
    position: relative;
}

.ribbon-top::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: url('../images/logo.png') center/contain no-repeat;
}

.ribbon-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.8);
    line-height: 1.2;
}

.ribbon-buttons {
    background: linear-gradient(to bottom, #8b0000, #5a0000);
    padding: 15px;
    border: 2px solid #ffd700;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ffd700;
    transition: all 0.3s;
}

.btn-red {
    background: linear-gradient(to bottom, #c41e1e, #8b0000);
    color: #ffd700;
}

.btn-red:hover {
    background: linear-gradient(to bottom, #ff4444, #c41e1e);
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.6);
}

.ribbon-bottom {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 20px solid #5a0000;
    margin: 0 auto;
}

/* 中间新闻公告 */
.news-panel {
    flex: 1;
    background: linear-gradient(to bottom, #2a1a10, #1a1008);
    border: 2px solid #8b4513;
    padding: 20px;
}

.panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.panel-title {
    font-size: 18px;
    color: #ffd700;
    font-weight: bold;
}

.panel-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #8b4513, transparent);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    font-size: 13px;
    line-height: 1.6;
}

.news-bracket {
    color: #ff6b35;
    font-weight: bold;
}

.news-text {
    color: #ccc;
}

/* 右侧宣传图 */
.sidebar-right {
    width: 280px;
}

.ad-box {
    border: 2px solid #8b4513;
    overflow: hidden;
}

.ad-box img {
    width: 100%;
    display: block;
}

/* 分隔线 */
.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #8b4513, transparent);
    margin: 30px 0;
}

/* 装备展示区域 */
.section {
    padding: 20px 0;
}

.section-inner {
    width: 1200px;
    margin: 0 auto;
}

.equip-showcase {
    background: linear-gradient(to bottom, #2a1a10, #1a1008);
    border: 3px solid #8b4513;
    padding: 20px;
    position: relative;
}

.showcase-header {
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 18px;
    color: #ffd700;
    font-weight: bold;
    margin-right: 15px;
}

.showcase-subtitle {
    font-size: 12px;
    color: #8b4513;
}

.showcase-content {
    position: relative;
    display: flex;
    align-items: center;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #ffd700;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.left-arrow {
    left: -10px;
}

.right-arrow {
    right: -10px;
}

.equip-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1;
}

.equip-card {
    width: 250px;
    text-align: center;
}

.equip-card img {
    width: 250px;
    height: 390px;
    display: block;
    border: 2px solid #8b4513;
}

.card-label {
    margin-top: 10px;
    font-size: 14px;
    color: #ffd700;
}

/* 装备详情卡片 */
.item-cards {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

/* 属性展示图片 */
.attr-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.attr-images img {
    display: block;
    max-width: none;
    border: 2px solid #8b4513;
}

.item-card {
    width: 250px;
    background: linear-gradient(to bottom, #1a0a08, #0a0505);
    border: 1px solid #8b4513;
    padding: 15px;
}

.item-title {
    text-align: center;
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}

.item-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border: 1px solid #ffd700;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ff6b35, #8b0000);
    border-radius: 50%;
}

.item-icon.red {
    background: radial-gradient(circle, #ff4444, #8b0000);
}

.item-icon.yellow {
    background: radial-gradient(circle, #ffd700, #cc9900);
}

.item-icon.gold {
    background: radial-gradient(circle, #ffed4a, #b8860b);
}

.item-attrs {
    font-size: 12px;
    line-height: 1.6;
}

.item-attrs p {
    margin: 2px 0;
}

.attr-label {
    color: #ffd700;
    font-weight: bold;
}

.attr-special {
    margin-top: 8px;
}

.blue-text {
    color: #4da6ff;
}

.red-text {
    color: #ff4444;
}

.green-text {
    color: #4dff4d;
}

.gray-text {
    color: #999;
}

.showcase-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #8b4513;
}

.footer-text {
    color: #ccc;
    font-size: 13px;
}

/* 底部版权 */
.footer {
    background: #0a0505;
    padding: 30px 0;
    border-top: 2px solid #8b4513;
    margin-top: 40px;
}

.footer-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    text-align: center;
    flex: 1;
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}
