@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+XiaoWei&display=swap');

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

:root {
    --bg-primary: #1a0033;
    --bg-secondary: #2d1b4e;
    --bg-card: rgba(45, 27, 78, 0.6);
    --neon-purple: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-pink: #ff69b4;
    --text-primary: #e1bee7;
    --text-secondary: #ce93d8;
    --text-muted: #9c27b0;
    --border-color: rgba(255, 0, 255, 0.3);
    --shadow-neon: 0 0 10px rgba(255, 0, 255, 0.5),
                   0 0 20px rgba(255, 0, 255, 0.3),
                   0 0 40px rgba(255, 0, 255, 0.1);
    --shadow-cyan: 0 0 10px rgba(0, 255, 255, 0.5),
                   0 0 20px rgba(0, 255, 255, 0.3),
                   0 0 40px rgba(0, 255, 255, 0.1);
    --gradient-neon: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ========== 顶部通知条 ========== */
.top-bar {
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.update-time {
    font-family: 'ZCOOL XiaoWei', serif;
    color: var(--neon-purple);
}

/* ========== 头部导航 ========== */
.header {
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-neon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--bg-primary);
    font-family: 'ZCOOL XiaoWei', serif;
    box-shadow: var(--shadow-neon);
}

.logo-text {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.5rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--neon-purple);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ========== Banner 区域 ========== */
.banner {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.banner h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.4));
}

.banner h1 .glow {
    display: block;
    font-size: 0.7em;
    margin-top: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
        filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.6));
    }
}

.banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
}

.banner-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.banner-meta span strong {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

/* ========== 实时状态栏 ========== */
.status-bar {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 0, 51, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    margin: 30px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.15);
    border-radius: 10px;
    font-size: 1.2rem;
}

.status-item .info {
    display: flex;
    flex-direction: column;
}

.status-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-item .value {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.3rem;
    color: var(--neon-cyan);
    font-weight: 700;
}

/* ========== 分类导航 ========== */
.category-nav {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gradient-neon);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-purple);
}

.section-more {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.section-more:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
    gap: 10px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.category-card:hover::before {
    left: 100%;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.category-name {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== 卡片列表 ========== */
.news-section {
    padding: 40px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    position: relative;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 280px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--neon-purple);
    color: var(--bg-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.news-body {
    padding: 20px;
}

.news-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: var(--transition);
}

.news-card.featured .news-title {
    font-size: 1.5rem;
}

.news-card:hover .news-title {
    color: var(--neon-cyan);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-time .dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== 时间轴 ========== */
.timeline-section {
    padding: 40px 0;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--neon-purple), var(--neon-cyan), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-purple), 0 0 30px rgba(255, 0, 255, 0.3);
    animation: pulse 2s infinite;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.timeline-time {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* ========== 热点榜 ========== */
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.hot-item:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateX(5px);
}

.hot-rank {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.5rem;
    font-weight: 900;
    min-width: 40px;
    text-align: center;
}

.hot-rank.top-1 {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.hot-rank.top-2 {
    color: #ff8844;
    text-shadow: 0 0 10px rgba(255, 136, 68, 0.5);
}

.hot-rank.top-3 {
    color: #ffcc44;
    text-shadow: 0 0 10px rgba(255, 204, 68, 0.5);
}

.hot-rank.normal {
    color: var(--text-muted);
}

.hot-info {
    flex: 1;
}

.hot-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hot-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
}

.hot-trend {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trend-up {
    color: #ff4444;
}

.trend-down {
    color: #44ff44;
}

.trend-flat {
    color: var(--text-muted);
}

/* ========== 深度文章 ========== */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.exclusive-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.exclusive-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.exclusive-header {
    padding: 28px 28px 0;
}

.exclusive-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    color: var(--bg-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.exclusive-title {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.exclusive-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.exclusive-content {
    padding: 0 28px 28px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.exclusive-content p {
    margin-bottom: 14px;
}

.exclusive-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.read-more:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
    gap: 10px;
}

/* ========== 关于我们 ========== */
.about-hero {
    text-align: center;
    padding: 60px 0;
}

.about-hero h1 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.promise-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.promise-item {
    text-align: center;
    padding: 20px;
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.promise-item h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.3rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.promise-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.team-section {
    padding: 40px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-neon);
}

.team-name {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.team-role {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== 联系页面 ========== */
.contact-section {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card .phone {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-card .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.disclaimer {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 14px;
    padding: 24px;
    margin-top: 30px;
}

.disclaimer h3 {
    font-family: 'ZCOOL XiaoWei', serif;
    color: #ff6666;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ========== 页脚 ========== */
.footer {
    background: rgba(26, 0, 51, 0.98);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-neon);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--neon-purple);
    padding-left: 5px;
}

.footer-col .live-clock {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2rem;
    color: var(--neon-purple);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom .icp {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans SC', sans-serif;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--bg-primary);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5),
                0 0 40px rgba(255, 0, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--shadow-cyan);
}

/* ========== 动画 ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .news-card.featured {
        grid-column: span 1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 50px;
        padding-right: 10px;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 0, 51, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 998;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .banner {
        padding: 50px 0 40px;
    }

    .banner-meta {
        gap: 20px;
    }

    .status-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .status-item {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .exclusive-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 滚动条 ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-purple), var(--neon-cyan));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* ========== 选中样式 ========== */
::selection {
    background: var(--neon-purple);
    color: var(--bg-primary);
}

/* ========== 回到顶部 ========== */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: var(--shadow-neon);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    transform: translateY(-5px);
}