/*
Theme Name: Zeverland 社区服
Theme URI: www.zeverland.com
Author: 天海
Description: Zeverland 末日社区服官网主题 - 全屏视频背景 + 金色透明菜单
Version: 1.0
License: GPL v2 or later
Text Domain: zeverland
*/

/* ============================================
   基础重置 & 全局样式th-z
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #0a0706;
    color: #e8ddd6;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   顶部透明菜单栏（金色字体 · 毛玻璃效果）
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    background: rgba(10, 7, 6, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(193, 106, 68, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.top-nav.scrolled {
    background: rgba(10, 7, 6, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
/* ============================================
首页 - 整合双服状态 + 游戏解说
============================================ */

.server-hub-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0706 0%, #1a1210 100%);
    border-top: 1px solid #2f201b;
    border-bottom: 1px solid #2f201b;
}

.server-hub-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}
/* ============================================
顶部菜单 - QQ群按钮
=========================================== */

.btn-qq {
    background: rgba(0, 150, 255, 0.10);
    border: 1px solid rgba(0, 150, 255, 0.15);
    color: #6a9ec0;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-qq:hover {
    background: rgba(0, 150, 255, 0.20);
    border-color: rgba(0, 150, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.08);
    transform: translateY(-1px);
}

/* 移动端适配 */
@media (max-width: 600px) {
    .btn-qq {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* ===== 左侧双服卡片 ===== */
.dual-server-card {
    background: rgba(26, 18, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #3a2a24;
    border-radius: 24px;
    padding: 28px 28px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.dual-server-card:hover {
    border-color: #4a3a34;
}

.dual-server-card .hub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.dual-server-card .hub-title {
    font-size: 0.75rem;
    color: #7d6458;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dual-server-card .hub-title i {
    color: #c16a44;
}

.dual-server-card .hub-status-badge {
    font-size: 0.65rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    padding: 4px 14px;
    border-radius: 40px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}
.dual-server-card .hub-status-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse 1.5s infinite;
}

.dual-server-card .server-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 16px;
    transition: all 0.3s;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
}
.dual-server-card .server-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.dual-server-card .server-row .info-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dual-server-card .server-row .tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.dual-server-card .server-row .tag.pve {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}
.dual-server-card .server-row .tag.pvp {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

.dual-server-card .server-row .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8ddd6;
}

.dual-server-card .server-row .status-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: #b8a69b;
}
.dual-server-card .server-row .status-meta .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.dual-server-card .server-row .status-meta .dot.green {
    background: #2ecc71;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.3);
}
.dual-server-card .server-row .status-meta .dot.red {
    background: #e74c3c;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.3);
}
.dual-server-card .server-row .status-meta i {
    color: #b67c61;
    width: 16px;
}

.dual-server-card .server-row .join-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.dual-server-card .server-row .join-btn.pve {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}
.dual-server-card .server-row .join-btn.pve:hover {
    background: rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.3);
    transform: scale(1.04);
}
.dual-server-card .server-row .join-btn.pvp {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.15);
}
.dual-server-card .server-row .join-btn.pvp:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
    transform: scale(1.04);
}

.dual-server-card .map-info {
    margin-top: 10px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: #b8a69b;
}
.dual-server-card .map-info i {
    color: #c16a44;
    margin-right: 6px;
}
.dual-server-card .map-info .map-name {
    color: #e8ddd6;
    font-weight: 600;
}
.dual-server-card .map-info .map-size {
    color: #7d6458;
    font-size: 0.7rem;
}

.dual-server-card .server-footer-info {
    margin-top: 14px;
    padding: 14px 16px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.dual-server-card .server-footer-info .footer-item {
    font-size: 0.75rem;
    color: #7d6458;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dual-server-card .server-footer-info .footer-item i {
    color: #5a4a40;
    width: 16px;
    font-size: 0.7rem;
}
.dual-server-card .server-footer-info .footer-item strong {
    color: #b8a69b;
    font-weight: 500;
}

/* ===== 右侧游戏解说 ===== */
.server-intro {
    background: rgba(26, 18, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #3a2a24;
    border-radius: 24px;
    padding: 32px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.server-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(193, 106, 68, 0.03), transparent 60%);
    pointer-events: none;
}

.server-intro .intro-icon {
    font-size: 2.8rem;
    margin-bottom: 6px;
}

.server-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #e8ddd6;
    margin-bottom: 10px;
}
.server-intro h2 span {
    background: linear-gradient(145deg, #e8b48c, #c16a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-intro p {
    color: #b8a69b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.server-intro .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.server-intro .feature-tags span {
    background: rgba(193, 106, 68, 0.1);
    color: #e8c9a0;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    border: 1px solid rgba(193, 106, 68, 0.08);
}

/* ============================================
响应式
=========================================== */
@media (max-width: 900px) {
    .server-hub-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .dual-server-card .server-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dual-server-card .server-row .join-btn {
        margin-left: auto;
    }
    .server-intro {
        text-align: center;
    }
    .server-intro .feature-tags {
        justify-content: center;
    }
    .dual-server-card .server-footer-info {
        grid-template-columns: 1fr 1fr;
    }
    .dual-server-card .hub-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .dual-server-card {
        padding: 20px 16px;
    }
    .dual-server-card .server-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 12px;
    }
    .dual-server-card .server-row .info-left {
        flex-wrap: wrap;
    }
    .dual-server-card .server-row .join-btn {
        margin-left: 0;
        text-align: center;
    }
    .dual-server-card .server-row .status-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dual-server-card .map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .dual-server-card .server-footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
        padding: 12px 0 4px;
    }
    .dual-server-card .server-footer-info .footer-item {
        font-size: 0.65rem;
    }
    .server-intro {
        padding: 24px 20px;
    }
    .server-intro h2 {
        font-size: 1.5rem;
    }
    .server-intro p {
        font-size: 0.9rem;
    }
    .dual-server-card .hub-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.nav-logo img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(193, 106, 68, 0.2));
}
.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f0d4b8, #c16a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px 24px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-menu li {
    display: inline-block;
}
.nav-menu a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #e8c9a0;
    text-shadow: 0 0 20px rgba(232, 201, 160, 0.08);
    padding: 6px 4px;
    transition: all 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8c9a0, #c16a44);
    transition: width 0.3s ease;
    box-shadow: 0 0 12px rgba(193, 106, 68, 0.4);
}
.nav-menu a:hover {
    color: #f5e0c8;
    text-shadow: 0 0 30px rgba(232, 201, 160, 0.25);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-actions .btn-join-nav {
    background: rgba(193, 106, 68, 0.2);
    border: 1px solid rgba(232, 201, 160, 0.3);
    color: #e8c9a0;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.nav-actions .btn-join-nav:hover {
    background: rgba(193, 106, 68, 0.4);
    border-color: #e8c9a0;
    box-shadow: 0 0 24px rgba(193, 106, 68, 0.2);
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #e8c9a0;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   区域①：全屏视频背景（首屏）
   ============================================ */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a0f0b 0%, #0d0806 40%, #1f1410 100%);
}
.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-video-wrapper .light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(200, 120, 80, 0.08) 0%, transparent 60%);
    animation: sweep 12s infinite alternate ease-in-out;
    z-index: 0;
}
@keyframes sweep {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 8%) rotate(5deg); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}
.hero-content .logo-main {
    max-width: 280px;
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(180, 90, 58, 0.25));
}
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.hero-content h1 span {
    background: linear-gradient(145deg, #e8b48c, #c16a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.3rem;
    margin-top: 12px;
    opacity: 0.85;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    letter-spacing: 2px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: floatAndGlow 2.5s infinite ease-in-out;
    cursor: pointer;
    transition: color 0.3s;
}
.hero-scroll-hint:hover {
    color: #c16a44;
}
@keyframes floatAndGlow {
    0%, 100% { transform: translateY(0); opacity: 0.6; text-shadow: 0 0 5px rgba(193, 106, 68, 0); }
    50% { transform: translateY(-12px); opacity: 1; text-shadow: 0 0 20px rgba(193, 106, 68, 0.4); }
}

/* ============================================
   区域②：服务器信息 + Steam购买按钮
   ============================================ */
.server-info {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0706 0%, #1a1210 100%);
    border-top: 1px solid #2f201b;
    border-bottom: 1px solid #2f201b;
}
.server-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.server-status-card {
    background: rgba(26, 18, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #3a2a24;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.server-status-card .ip {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    color: #dbb8a8;
    background: #0d0908;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #3f2d26;
    display: inline-block;
    margin: 10px 0 16px;
    letter-spacing: 1px;
}
.status-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 16px 0 24px;
}
.status-row .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #5fc75f;
    box-shadow: 0 0 16px #3ba33b;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}
.btn-steam {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #1a6b9e;
    color: #fff;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(26, 107, 158, 0.4);
    overflow: hidden;
    z-index: 1;
}
.btn-steam::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}
.btn-steam:hover::before {
    left: 100%;
}
.btn-steam:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 36px rgba(26, 107, 158, 0.7);
    background: #2a8bc4;
}
.btn-steam:active {
    transform: scale(0.96);
}
.server-info-right h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.server-info-right p {
    font-size: 1.05rem;
    color: #b8a69b;
    line-height: 1.8;
}

/* ============================================
   区域③：通告区
   ============================================ */
.news-section {
    padding: 40px 0 60px;
    background: #0d0908;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    text-align: center;
}
.section-title i {
    color: #c16a44;
    margin-right: 12px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-card {
    background: #1a1210;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #2f201b;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: default;
}
.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(193, 106, 68, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.news-card:hover::after {
    opacity: 1;
}
.news-card:hover {
    border-color: #c16a44;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.news-card:hover img {
    transform: scale(1.03);
}
.news-card .card-body {
    padding: 22px 24px 28px;
    position: relative;
    z-index: 1;
}
.news-card .tag {
    display: inline-block;
    background: #3d281f;
    color: #dbaa8e;
    padding: 2px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.news-card p {
    color: #b8a69b;
    font-size: 0.95rem;
    line-height: 1.6;
}
.news-card .date {
    color: #7d6458;
    font-size: 0.8rem;
    margin-top: 14px;
    display: block;
}

/* ============================================
   区域④：服务器更新 & 设置
   ============================================ */
.update-section {
    padding: 40px 0 70px;
    background: linear-gradient(0deg, #0a0706, #15100e);
    border-top: 1px solid #2f201b;
}
.update-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.update-box {
    background: rgba(26, 18, 16, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #2f201b;
    transition: border-color 0.3s;
}
.update-box:hover {
    border-color: #c16a44;
}
.update-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.update-box h3 i {
    color: #c16a44;
}
.update-box ul {
    list-style: none;
    padding: 0;
}
.update-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid #2a1e1a;
    display: flex;
    gap: 14px;
    align-items: baseline;
    transition: padding-left 0.2s;
}
.update-box ul li:hover {
    padding-left: 8px;
}
.update-box ul li i {
    color: #b67c61;
    width: 22px;
}

/* ============================================
   页脚
   ============================================ */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #6f5c51;
    border-top: 1px solid #2a1e1a;
    font-size: 0.9rem;
    background: #0a0706;
}

/* ============================================
   响应式适配
   ============================================ */
@media (max-width: 900px) {
    .server-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .update-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .hero-content .logo-main {
        max-width: 200px;
    }
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px 0 8px;
        border-top: 1px solid rgba(232, 201, 160, 0.1);
        margin-top: 8px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .top-nav {
        padding: 12px 20px;
    }
    .nav-actions .btn-join-nav {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .server-status-card {
        padding: 24px;
    }
    .status-row {
        flex-direction: column;
        gap: 12px;
    }
    .btn-steam {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .nav-logo span {
        font-size: 0.9rem;
    }
}
/* 鎏金心愿单链接悬停效果 */
.wishlist-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(232, 201, 160, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border: 1px solid rgba(232, 201, 160, 0.10);
    border-radius: 40px;
    transition: all 0.4s ease;
    background: rgba(232, 201, 160, 0.02);
    text-decoration: none;
    backdrop-filter: blur(2px);
    margin-top: 4px;
}

.wishlist-link:hover {
    color: #f0d4b8;
    border-color: rgba(232, 201, 160, 0.25);
    background: rgba(232, 201, 160, 0.06);
    box-shadow: 0 0 40px rgba(193, 106, 68, 0.04);
    transform: translateY(-2px);
}

.wishlist-link:hover .steam-icon {
    color: #f0d4b8;
}

.wishlist-link:hover .heart-icon {
    transform: scale(1.15);
    color: #e8b48c;
}
/* ============================================
首页 - 整合双服状态 + 游戏解说
============================================ */
.server-hub-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0706 0%, #1a1210 100%);
    border-top: 1px solid #2f201b;
    border-bottom: 1px solid #2f201b;
}

.server-hub-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

/* 左侧双服卡片 */
.dual-server-card {
    background: rgba(26, 18, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #3a2a24;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.dual-server-card .hub-title {
    font-size: 0.75rem;
    color: #7d6458;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dual-server-card .hub-title i {
    color: #c16a44;
}

.dual-server-card .server-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 16px;
    transition: background 0.3s;
    margin-bottom: 8px;
}
.dual-server-card .server-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dual-server-card .server-row .info-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dual-server-card .server-row .tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.dual-server-card .server-row .tag.pve {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}
.dual-server-card .server-row .tag.pvp {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

.dual-server-card .server-row .name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8ddd6;
}

.dual-server-card .server-row .status-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: #b8a69b;
}
.dual-server-card .server-row .status-meta .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.dual-server-card .server-row .status-meta .dot.green {
    background: #2ecc71;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.3);
}
.dual-server-card .server-row .status-meta .dot.red {
    background: #2ecc71;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.3);
}
.dual-server-card .server-row .status-meta i {
    color: #b67c61;
    width: 16px;
}

.dual-server-card .server-row .join-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.dual-server-card .server-row .join-btn.pve {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}
.dual-server-card .server-row .join-btn.pve:hover {
    background: rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.3);
}
.dual-server-card .server-row .join-btn.pvp {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.15);
}
.dual-server-card .server-row .join-btn.pvp:hover {
    background: rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.4);
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.15);
}

/* 地图信息 */
.dual-server-card .map-info {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: #b8a69b;
}
.dual-server-card .map-info i {
    color: #c16a44;
    margin-right: 6px;
}
.dual-server-card .map-info .map-name {
    color: #e8ddd6;
    font-weight: 600;
}
.dual-server-card .map-info .map-size {
    color: #7d6458;
    font-size: 0.7rem;
}

/* 右侧游戏解说 */
.server-intro {
    background: rgba(26, 18, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #3a2a24;
    border-radius: 24px;
    padding: 32px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #e8ddd6;
    margin-bottom: 10px;
}
.server-intro h2 span {
    background: linear-gradient(145deg, #e8b48c, #c16a44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-intro p {
    color: #b8a69b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.server-intro .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.server-intro .feature-tags span {
    background: rgba(193, 106, 68, 0.1);
    color: #e8c9a0;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    border: 1px solid rgba(193, 106, 68, 0.08);
}

/* ============================================
响应式
=========================================== */
@media (max-width: 900px) {
    .server-hub-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .dual-server-card .server-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dual-server-card .server-row .join-btn {
        margin-left: auto;
    }
    .server-intro {
        text-align: center;
    }
    .server-intro .feature-tags {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .dual-server-card {
        padding: 20px 16px;
    }
    .dual-server-card .server-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 12px;
    }
    .dual-server-card .server-row .info-left {
        flex-wrap: wrap;
    }
    .dual-server-card .server-row .join-btn {
        margin-left: 0;
        text-align: center;
    }
    .dual-server-card .server-row .status-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dual-server-card .map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .server-intro {
        padding: 24px 20px;
    }
    .server-intro h2 {
        font-size: 1.5rem;
    }
    .server-intro p {
        font-size: 0.9rem;
    }
}
/* ============================================
移动端适配（完善版）
=========================================== */

/* 手机竖屏 (≤768px) */
@media (max-width: 768px) {
    /* ----- 顶部菜单 ----- */
    .top-nav {
        padding: 10px 16px;
    }
    .nav-logo img {
        height: 26px;
    }
    .nav-logo span {
        font-size: 0.9rem;
    }
    .nav-menu {
        gap: 6px 14px;
    }
    .nav-menu a {
        font-size: 0.8rem;
        padding: 4px 2px;
    }
    .nav-actions .btn-join-nav {
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    /* ----- 首屏视频 ----- */
    .hero-video-wrapper {
        height: 100vh;
        min-height: 100vh;
    }
    .hero-content-center {
        padding: 10px 12px;
        margin-top: 0;
    }
    .hero-content-center .logo-main {
        max-width: 160px;
        margin-bottom: 8px;
    }
    .hero-content-center .sub-title {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    .wishlist-link {
        font-size: 0.65rem;
        padding: 4px 10px;
        gap: 4px;
    }
    .wishlist-link .steam-icon {
        font-size: 0.75rem;
    }
    .wishlist-link .badge {
        display: none;
    }
    .hero-scroll-hint {
        font-size: 0.65rem;
        bottom: 16px;
    }

    /* ----- 双服卡片区域 ----- */
    .server-hub-section {
        padding: 30px 0 20px;
    }
    .server-hub-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* 左侧双服卡片 */
    .dual-server-card {
        padding: 16px 14px 12px;
        border-radius: 16px;
    }
    .dual-server-card .hub-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 10px;
    }
    .dual-server-card .hub-title {
        font-size: 0.65rem;
    }
    .dual-server-card .hub-status-badge {
        font-size: 0.55rem;
        padding: 2px 10px;
    }
    .dual-server-card .hub-status-badge .status-dot {
        width: 4px;
        height: 4px;
    }

    /* 服务器行 - 竖排 */
    .dual-server-card .server-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 12px;
        margin-bottom: 4px;
        border-radius: 12px;
    }
    .dual-server-card .server-row .info-left {
        justify-content: center;
        gap: 8px;
    }
    .dual-server-card .server-row .tag {
        font-size: 0.5rem;
        padding: 1px 8px;
    }
    .dual-server-card .server-row .name {
        font-size: 0.8rem;
    }
    .dual-server-card .server-row .status-meta {
        justify-content: center;
        gap: 10px;
        font-size: 0.7rem;
    }
    .dual-server-card .server-row .status-meta .dot {
        width: 6px;
        height: 6px;
    }
    .dual-server-card .server-row .join-btn {
        text-align: center;
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    /* 地图信息 - 竖排 */
    .dual-server-card .map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 12px;
        font-size: 0.7rem;
        margin-top: 6px;
    }
    .dual-server-card .map-info .map-name {
        font-size: 0.75rem;
    }
    .dual-server-card .map-info .map-size {
        font-size: 0.6rem;
    }

    /* 底部运行信息 - 两列变紧凑 */
    .dual-server-card .server-footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
        padding: 10px 0 4px;
        margin-top: 8px;
    }
    .dual-server-card .server-footer-info .footer-item {
        font-size: 0.6rem;
        gap: 4px;
    }
    .dual-server-card .server-footer-info .footer-item i {
        font-size: 0.6rem;
        width: 14px;
    }

    /* ----- 右侧解说 ----- */
    .server-intro {
        padding: 20px 16px;
        border-radius: 16px;
        text-align: center;
    }
    .server-intro .intro-icon img {
        width: 56px !important;
        height: 56px !important;
    }
    .server-intro h2 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .server-intro p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    .server-intro .feature-tags {
        justify-content: center;
        gap: 4px;
    }
    .server-intro .feature-tags span {
        font-size: 0.6rem;
        padding: 2px 10px;
    }

    /* ----- 通告区 ----- */
    .news-section {
        padding: 20px 0 30px;
    }
    .section-title-main {
        font-size: 1.4rem;
        margin: 30px 0 16px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .news-card {
        border-radius: 14px;
    }
    .news-card img {
        height: 140px;
    }
    .news-card .card-body {
        padding: 14px 16px 18px;
    }
    .news-card h3 {
        font-size: 1rem;
    }
    .news-card p {
        font-size: 0.8rem;
    }

    /* ----- 更新 & 设置 ----- */
    .update-section {
        padding: 20px 0 40px;
    }
    .update-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .update-box {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .update-box h3 {
        font-size: 1.1rem;
    }
    .update-box ul li {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    /* ----- 页脚 ----- */
    footer {
        padding: 16px 12px;
        font-size: 0.7rem;
    }
}

/* 小屏手机 (≤480px) */
@media (max-width: 480px) {
    .hero-content-center .logo-main {
        max-width: 120px;
    }
    .hero-content-center .sub-title {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    .wishlist-link {
        font-size: 0.55rem;
        padding: 3px 8px;
        gap: 3px;
    }
    .wishlist-link .steam-icon {
        font-size: 0.65rem;
    }

    .dual-server-card {
        padding: 12px 10px 10px;
    }
    .dual-server-card .server-row {
        padding: 8px 10px;
    }
    .dual-server-card .server-row .name {
        font-size: 0.7rem;
    }
    .dual-server-card .server-row .status-meta {
        font-size: 0.6rem;
        gap: 6px;
    }
    .dual-server-card .server-row .join-btn {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    .dual-server-card .server-footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 2px 8px;
    }
    .dual-server-card .server-footer-info .footer-item {
        font-size: 0.5rem;
    }

    .server-intro h2 {
        font-size: 1rem;
    }
    .server-intro p {
        font-size: 0.7rem;
    }
    .server-intro .feature-tags span {
        font-size: 0.5rem;
        padding: 2px 8px;
    }
    .server-intro .intro-icon img {
        width: 44px !important;
        height: 44px !important;
    }

    .section-title-main {
        font-size: 1.2rem;
    }
    .news-card img {
        height: 100px;
    }
    .news-card .card-body {
        padding: 10px 12px 14px;
    }
    .news-card h3 {
        font-size: 0.85rem;
    }
    .news-card p {
        font-size: 0.7rem;
    }
    .news-card .tag {
        font-size: 0.55rem;
        padding: 1px 10px;
    }

    .update-box h3 {
        font-size: 0.95rem;
    }
    .update-box ul li {
        font-size: 0.7rem;
        padding: 5px 0;
    }
}
.site-footer {
    background: #0a0706;
    border-top: 1px solid #2a1e1a;
    padding: 20px 0;
}

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

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 20px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    border-radius: 50%;
    border: 2px solid rgba(193, 106, 68, 0.15);
}

.footer-right {
    color: #6f5c51;
    font-size: 0.9rem;
}

/* 移动端适配 */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-logo-img {
        height: 28px;
    }
    .footer-right {
        font-size: 0.75rem;
    }
}
/* ============================================
首屏按钮组
=========================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 16px;
    margin-top: 6px;
}

/* ============================================
心愿单按钮 - 金色半透明背景
=========================================== */

.wishlist-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f0d4b8;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border: 1px solid rgba(232, 201, 160, 0.20);
    border-radius: 40px;
    transition: all 0.4s ease;
    background: rgba(232, 201, 160, 0.06);
    text-decoration: none;
    box-shadow: 0 0 30px rgba(232, 201, 160, 0.03);
}
.wishlist-link:hover {
    color: #f5e8d0;
    border-color: rgba(232, 201, 160, 0.40);
    background: rgba(232, 201, 160, 0.12);
    box-shadow: 0 0 50px rgba(232, 201, 160, 0.08);
    transform: translateY(-2px);
}
.wishlist-link .steam-icon {
    font-size: 1.1rem;
    color: rgba(232, 201, 160, 0.6);
}
.wishlist-link:hover .steam-icon {
    color: #f0d4b8;
}
.wishlist-link .heart-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}
.wishlist-link:hover .heart-icon {
    transform: scale(1.15);
}
.wishlist-link .badge {
    font-size: 0.6rem;
    opacity: 0.4;
    font-weight: 300;
}

/* ============================================
抖音直播按钮 - 红色半透明背景 + 呼吸灯
=========================================== */

.douyin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b85;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 77, 106, 0.20);
    border-radius: 40px;
    transition: all 0.4s ease;
    background: rgba(255, 77, 106, 0.06);
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 77, 106, 0.03);
}
.douyin-link:hover {
    color: #ff8a9e;
    border-color: rgba(255, 77, 106, 0.40);
    background: rgba(255, 77, 106, 0.12);
    box-shadow: 0 0 50px rgba(255, 77, 106, 0.08);
    transform: translateY(-2px);
}
.douyin-link i {
    font-size: 1.1rem;
    color: rgba(255, 77, 106, 0.6);
}
.douyin-link:hover i {
    color: #ff6b85;
}
.douyin-link .badge {
    font-size: 0.6rem;
    opacity: 0.4;
    font-weight: 300;
}

/* 呼吸灯 - 直播中红点 */
.douyin-link .live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d55;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(255, 45, 85, 0.4); }
    50% { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 20px rgba(255, 45, 85, 0.15); }
}

/* ============================================
移动端适配
=========================================== */

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .wishlist-link,
    .douyin-link {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .wishlist-link .badge,
    .douyin-link .badge {
        display: none;
    }
    .douyin-link .live-dot {
        width: 6px;
        height: 6px;
    }
}