/*
Theme Name: 180战神合击攻略站
Theme URI: https://yourdomain.com/180-heji
Author: Your Name
Author URI: https://yourdomain.com
Description: 1.80英雄合击私服攻略主题
Version: 1.0
License: GPL v2 or later
Text Domain: 180-heji
*/

/* ========== 全局重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
    background: #0a0e14;
    color: #d4d8dd;
    line-height: 1.6;
}

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

/* ========== 顶部导航 ========== */
.top-bar {
    background: linear-gradient(180deg, #1a1f2a 0%, #0f131c 100%);
    border-bottom: 2px solid #c9a03d;
    padding: 12px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a03d, #f5d77e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #0a0e14;
    text-decoration: none;
}

.site-title {
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(180deg, #f5d77e, #c9a03d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.site-sub {
    font-size: 14px;
    color: #8892a0;
    margin-top: 2px;
}

/* 主导航 */
.main-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: nowrap;
    background: #0f131c;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #2a3344;
    overflow-x: auto;
    width: 100%;
}

.nav-item {
    flex: 1;
    min-width: 90px;
    text-align: center;
    padding: 12px 8px;
    background: #1a2330;
    border-radius: 8px;
    color: #d4d8dd;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.nav-item .nav-icon {
    font-size: 28px;
}

.nav-item .nav-text {
    font-size: 15px;
    white-space: nowrap;
}

.nav-item:hover {
    background: #232e40;
    color: #f5d77e;
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    color: #0a0e14;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

/* 跑马灯公告 */
.notice-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    margin: 15px 0;
    padding: 12px 20px;
    overflow: hidden;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-label {
    background: #ff6b35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.notice-text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.notice-text span {
    display: inline-block;
    animation: scrollText 30s linear infinite;
    font-size: 14px;
}

.notice-text a {
    color: #ffd700 !important;
    text-decoration: none;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.notice-bar:hover .notice-text span {
    animation-play-state: paused;
}

/* ========== 主体区域 ========== */
.main-content {
    padding: 20px 0;
}

/* 板块通用样式 */
.section-card {
    background: #131822;
    border: 1px solid #2a3344;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.section-header {
    background: linear-gradient(90deg, #1a2330, #131822);
    padding: 15px 20px;
    border-bottom: 1px solid #2a3344;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 {
    color: #f5d77e;
    font-size: 20px;
    font-weight: 600;
}

.section-header .en-title {
    color: #5a6a7a;
    font-size: 13px;
    margin-left: 5px;
}

.more-link {
    margin-left: auto;
    color: #8892a0;
    text-decoration: none;
    font-size: 14px;
}

.more-link:hover {
    color: #f5d77e;
}

/* ========== 内容布局（文章列表 + 侧边栏） ========== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
    margin: 0 0 20px;
}

/* ========== 文章列表 ========== */
.article-list {
    background: #131822;
    border: 1px solid #2a3344;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.list-header {
    padding: 12px 24px;
    background: #1a2330;
    border-bottom: 1px solid #2a3344;
    color: #f0e6c8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-item {
    padding: 20px 24px;
    border-bottom: 1px solid #1a2330;
    display: flex;
    gap: 24px;
    transition: background 0.2s;
    width: 100%;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background: #1a2330;
}

.article-thumb {
    width: 140px;
    height: 94px;
    background: linear-gradient(135deg, #1a2330, #0f131c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    border: 1px solid #2a3344;
    overflow: hidden;
}

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

.article-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    width: 100%;
}

.article-title a {
    color: #f0e6c8;
    text-decoration: none;
    display: block;
    width: 100%;
    word-break: break-word;
}

.article-title a:hover {
    color: #f5d77e;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #5a6a7a;
    flex-wrap: wrap;
}

.article-excerpt {
    color: #8892a0;
    font-size: 13px;
    line-height: 1.6;
    width: 100%;
}

/* ========== 侧边栏 ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #131822;
    border: 1px solid #2a3344;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header {
    padding: 12px 16px;
    background: #1a2330;
    border-bottom: 1px solid #2a3344;
    color: #f5d77e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-content {
    padding: 12px 16px;
}

/* 侧边栏开服列表 */
.sidebar-server-list {
    list-style: none;
}

.sidebar-server-item {
    padding: 10px 0;
    border-bottom: 1px dashed #1a2330;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-server-item:last-child {
    border-bottom: none;
}

.server-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-hot { background: #e74c3c; }
.dot-new { background: #27ae60; }
.dot-soon { background: #f39c12; }

.server-info-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.server-name-compact {
    color: #f0e6c8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.server-name-compact:hover {
    color: #f5d77e;
}

.server-time-compact {
    font-size: 11px;
    color: #5a6a7a;
}

.server-tag-mini {
    padding: 2px 8px;
    background: #0f131c;
    border-radius: 12px;
    font-size: 10px;
    color: #8892a0;
}

.more-server-side {
    margin-top: 12px;
    text-align: center;
}

.more-server-side a {
    color: #5a6a7a;
    text-decoration: none;
    font-size: 12px;
}

.more-server-side a:hover {
    color: #c9a03d;
}

/* 热门排行 */
.hot-rank-list {
    list-style: none;
}

.hot-rank-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #1a2330;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hot-rank-list li:last-child {
    border-bottom: none;
}

.rank-num {
    width: 26px;
    height: 26px;
    background: #2a3344;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #b8c0cc;
    flex-shrink: 0;
}

.rank-num.top1 { background: #c9a03d; color: #0a0e14; }
.rank-num.top2 { background: #a0a8b0; color: #0a0e14; }
.rank-num.top3 { background: #cd7f32; color: white; }

.hot-rank-list a {
    color: #d4d8dd;
    text-decoration: none;
    flex: 1;
    font-size: 13px;
}

.hot-rank-list a:hover {
    color: #f5d77e;
}

/* ========== 开服表格样式 ========== */
.server-table-wrap {
    overflow-x: auto;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.server-table thead {
    background: #1a2330;
}

.server-table th {
    text-align: left;
    padding: 14px 15px;
    color: #c9a03d;
    border-bottom: 1px solid #2a3344;
}

.server-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #1a2330;
    vertical-align: middle;
}

.server-table tbody tr:hover {
    background: #1a2330;
}

.server-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-name {
    color: #f0e6c8;
    font-weight: 600;
}

.btn-enter {
    padding: 6px 18px;
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    color: #0a0e14;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

.btn-enter:hover {
    background: linear-gradient(135deg, #e6b85c, #f5d77e);
}

/* ========== 开服列表页筛选栏 ========== */
.filter-bar {
    background: #131822;
    border: 1px solid #2a3344;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-label {
    color: #c9a03d;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: #1a2330;
    border: 1px solid #2a3344;
    color: #b8c0cc;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #232e40;
    border-color: #c9a03d;
    color: #f5d77e;
}

.filter-btn.active {
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    border-color: #c9a03d;
    color: #0a0e14;
    font-weight: 600;
}

.sort-select {
    background: #1a2330;
    border: 1px solid #2a3344;
    color: #d4d8dd;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

/* 开服表格增强 */
.server-list-table {
    min-width: 900px;
}

.server-list-table th {
    padding: 14px 12px;
    border-bottom: 2px solid #c9a03d;
}

.server-list-table td {
    padding: 14px 12px;
}

.status-badge {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.status-180 {
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    color: #0a0e14;
}

.status-hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.recommend-badge {
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    color: #0a0e14;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 6px;
    white-space: nowrap;
}

.version-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #0f131c;
    border-radius: 20px;
    font-size: 12px;
    color: #c9a03d;
    border: 1px solid #2a3344;
    white-space: nowrap;
}

.version-180 {
    background: rgba(201, 160, 61, 0.2);
    border-color: #c9a03d;
    color: #f5d77e;
}

.server-time {
    color: #f39c12;
    font-weight: 500;
    white-space: nowrap;
}

.server-tags-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.server-tag {
    padding: 4px 10px;
    background: #0f131c;
    border-radius: 20px;
    font-size: 11px;
    color: #8892a0;
    white-space: nowrap;
}

.tag-180 {
    background: rgba(201, 160, 61, 0.15);
    color: #f5d77e;
}

.server-intro {
    max-width: 200px;
}

.intro-text {
    display: block;
    font-size: 12px;
    color: #8892a0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.countdown-text {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.status-today {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.status-tomorrow {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.status-soon {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.priority-row {
    background: rgba(201, 160, 61, 0.05);
    border-left: 3px solid #c9a03d;
}

.loading-cell {
    text-align: center;
    padding: 60px !important;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #2a3344;
    border-top-color: #c9a03d;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== 攻略网格 ========== */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #1a2330;
}

.strategy-cat {
    background: #131822;
    padding: 20px 15px;
}

.strategy-cat h3 {
    color: #f0e6c8;
    font-size: 18px;
    margin-bottom: 18px;
    border-left: 3px solid #c9a03d;
    padding-left: 12px;
}

.strategy-list {
    list-style: none;
}

.strategy-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #1a2330;
}

.strategy-list a {
    color: #b8c0cc;
    text-decoration: none;
    font-size: 14px;
}

.strategy-list a:hover {
    color: #f5d77e;
}

/* ========== 热门推荐 ========== */
.hot-section {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hot-card {
    background: #1a2330;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #2a3344;
}

.hot-card h3 {
    color: #c9a03d;
    font-size: 16px;
    margin-bottom: 15px;
}

.hot-list {
    list-style: none;
}

.hot-list li {
    padding: 8px 0;
    border-bottom: 1px solid #0f131c;
}

.hot-list a {
    color: #d4d8dd;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.hot-list a:hover {
    color: #f5d77e;
}

.view-count {
    font-size: 12px;
    color: #5a6a7a;
}

/* 精选图文 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.feature-item {
    background: #1a2330;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a3344;
}

.feature-img {
    height: 140px;
    background: linear-gradient(135deg, #232e40, #1a2330);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
    position: relative;
}

/* 关键修复：让图片正确显示 */
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 15px;
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-content h4 a {
    color: #f0e6c8;
    text-decoration: none;
}

.feature-content h4 a:hover {
    color: #f5d77e;
}

.feature-content p {
    color: #8892a0;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-link {
    color: #c9a03d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.feature-link:hover {
    color: #f5d77e;
}

/* ========== 避坑曝光台 ========== */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.warning-card {
    background: #1a2330;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #2a3344;
}

.warning-card h3 {
    color: #e74c3c;
    font-size: 16px;
    margin-bottom: 15px;
}

.warning-list {
    list-style: none;
}

.warning-list li {
    padding: 8px 0;
    border-bottom: 1px solid #0f131c;
}

.warning-list a {
    color: #d4d8dd;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.warning-list a:hover {
    color: #e74c3c;
}

.date-badge {
    font-size: 11px;
    color: #5a6a7a;
}

/* ========== 友情链接 ========== */
.friendlinks-section {
    background: #0f131c;
    border-top: 1px solid #2a3344;
    border-bottom: 1px solid #2a3344;
    padding: 25px 0;
    margin-top: 40px;
}

.friendlinks-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 30px;
    list-style: none;
}

.friendlinks-list li a {
    color: #d4d8dd;
    text-decoration: none;
    font-size: 14px;
}

.friendlinks-list li a:hover {
    color: #f5d77e;
}

/* ========== 底部 ========== */
.footer {
    background: #0f131c;
    border-top: 1px solid #2a3344;
    padding: 25px 0;
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: #5a6a7a;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #c9a03d;
}

.copyright {
    text-align: center;
    color: #4a5a6a;
    font-size: 13px;
}

/* ========== 面包屑 ========== */
.breadcrumb {
    padding: 10px 0 5px;
    color: #5a6a7a;
    font-size: 14px;
}

.breadcrumb a {
    color: #8892a0;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f5d77e;
}

.breadcrumb .current {
    color: #c9a03d;
}

/* ========== 栏目头部 ========== */
.category-header {
    background: linear-gradient(135deg, #1a2330, #131822);
    border: 1px solid #2a3344;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a03d, #f5d77e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.category-info h1 {
    color: #f5d77e;
    font-size: 24px;
    margin-bottom: 5px;
}

.category-stats {
    margin-left: auto;
    text-align: right;
}

.stats-num {
    font-size: 28px;
    font-weight: bold;
    color: #f0e6c8;
}

/* ========== 文章详情页 ========== */
.article-main {
    background: #131822;
    border: 1px solid #2a3344;
    border-radius: 8px;
    overflow: hidden;
}

.article-header {
    padding: 25px 30px;
    border-bottom: 1px solid #1a2330;
}

.article-header h1 {
    color: #f5d77e;
    font-size: 28px;
    margin-bottom: 15px;
}

.post-subtitle {
    color: #80d0d0;
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #c9a03d;
}

.article-body {
    padding: 30px;
}

.article-content h2 {
    color: #f0e6c8;
    font-size: 22px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a2330;
}

.article-content h3 {
    color: #d4d8dd;
    font-size: 18px;
    margin: 25px 0 12px;
}

.article-content p {
    margin-bottom: 18px;
    color: #c0c8d0;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.related-posts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #1a2330;
}

.related-posts h3 {
    color: #f5d77e;
    font-size: 18px;
    margin-bottom: 15px;
}

.related-posts ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* ========== 响应式 ========== */
@media (max-width: 1100px) {
    .nav-item .nav-text {
        font-size: 13px;
    }
    .nav-item .nav-icon {
        font-size: 24px;
    }
}

@media (max-width: 950px) {
    .nav-item .nav-text {
        font-size: 12px;
    }
    .nav-item .nav-icon {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .warning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .main-nav {
        flex-direction: column;
        display: none;
    }
    .main-nav.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .nav-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 15px;
    }
    .nav-item .nav-text {
        white-space: normal;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-item {
        flex-direction: column;
        padding: 16px;
    }
    .article-thumb {
        width: 100%;
        height: 120px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    .hot-section {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .warning-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-buttons {
        justify-content: flex-start;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .server-list-table {
        min-width: 800px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    .category-stats {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 18px;
    }
    .section-header h2 {
        font-size: 16px;
    }
    .category-info h1 {
        font-size: 18px;
    }
}
/* ========== 查看完整开服表按钮 ========== */
.more-server-link {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1a2330;
    background: #131822;
}

.more-server-link a {
    display: inline-block;
    background: linear-gradient(135deg, #1a2330, #0f131c);
    border: 1px solid #c9a03d;
    color: #c9a03d;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.more-server-link a:hover {
    background: linear-gradient(135deg, #c9a03d, #e6b85c);
    color: #0a0e14;
    border-color: #c9a03d;
    transform: translateY(-2px);
}