/* 黑料网每日大赛 - 深色霓虹绿科技风格 */
/* 字体引入 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=ZCOOL+QingKe+HuangYou&display=swap');

/* ===== 全局变量 ===== */
:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --bg-card-2: #1c2230;
    --neon-green: #39ff14;
    --neon-green-2: #00ff41;
    --neon-blue: #1f6feb;
    --text-white: #ffffff;
    --text-gray: #8b949e;
    --text-dim: #6e7681;
    --border-color: #30363d;
    --red-down: #ff4d4d;
    --neon-glow: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    --neon-glow-blue: 0 0 10px rgba(31, 111, 235, 0.5);
    --card-glow: 0 0 0 1px rgba(57, 255, 20, 0.15), 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 10%, rgba(57, 255, 20, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(31, 111, 235, 0.08) 0%, transparent 40%);
    color: var(--text-white);
    line-height: 1.7;
    font-weight: 400;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-weight: normal;
    color: var(--neon-green);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--neon-green-2);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-white);
    text-shadow: var(--neon-glow);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===== 顶部导航 ===== */
.site-header {
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 26px;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: var(--neon-glow);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 18px;
    box-shadow: var(--neon-glow);
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
}

.logo .live-dot {
    width: 8px;
    height: 8px;
    background: var(--red-down);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--red-down);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    text-shadow: var(--neon-glow);
}

.nav-search {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 6px;
    padding: 4px 10px;
    border: 1px solid var(--border-color);
}

.nav-search input {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px;
    font-size: 13px;
    width: 130px;
    color: var(--text-white);
    font-family: inherit;
}

.nav-search input::placeholder {
    color: var(--text-dim);
}

.nav-search button {
    background: none;
    border: none;
    color: var(--neon-green);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

/* ===== 主容器 ===== */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 24px;
}

/* ===== Hero 大区 ===== */
.hero {
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-glow);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(57, 255, 20, 0.12);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 18px;
    text-shadow: var(--neon-glow);
    font-weight: 500;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 46px;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    letter-spacing: 2px;
}

.hero-title .highlight {
    color: var(--neon-green);
    text-shadow: var(--neon-glow);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-meta .stat {
    color: var(--text-gray);
    font-size: 14px;
}

.hero-meta .stat strong {
    color: var(--neon-green);
    font-size: 22px;
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    display: block;
    text-shadow: var(--neon-glow);
}

.hero-btn {
    display: inline-block;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--neon-green);
    box-shadow: var(--neon-glow);
}

.hero-btn:hover {
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
}

.hero-btn.outline {
    background: transparent;
    color: var(--neon-green);
    margin-left: 12px;
}

/* ===== 章节标题 ===== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title h2 {
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title h2::before {
    content: '▸';
    color: var(--neon-green);
    text-shadow: var(--neon-glow);
    font-family: 'Noto Sans SC', sans-serif;
}

.section-title .more {
    font-size: 13px;
    color: var(--neon-green);
}

/* ===== 热榜列表 ===== */
.hot-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px 22px;
    box-shadow: var(--card-glow);
}

.hot-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.hot-item:hover {
    background: rgba(57, 255, 20, 0.04);
}

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

.rank-num {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 30px;
    color: var(--text-dim);
    text-align: center;
    min-width: 36px;
}

.hot-item:nth-child(1) .rank-num {
    color: var(--neon-green);
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
    font-size: 36px;
}

.hot-item:nth-child(2) .rank-num,
.hot-item:nth-child(3) .rank-num {
    color: var(--neon-green-2);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
    font-size: 34px;
}

.hot-info {
    min-width: 0;
}

.hot-title {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 6px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
}

.hot-title .tag-mini {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 700;
}

.tag-mini.hot {
    background: rgba(255, 77, 77, 0.15);
    color: var(--red-down);
    border: 1px solid var(--red-down);
}

.tag-mini.new {
    background: rgba(31, 111, 235, 0.15);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

.tag-mini.boom {
    background: rgba(57, 255, 20, 0.15);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.hot-meta {
    font-size: 12px;
    color: var(--text-dim);
}

.hot-meta .discuss {
    color: var(--text-gray);
    margin-left: 12px;
}

.hot-value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hot-heat {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 16px;
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
    text-align: right;
    min-width: 70px;
}

.trend-arrow {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 50px;
    justify-content: center;
}

.trend-arrow.up {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
}

.trend-arrow.down {
    color: var(--red-down);
    background: rgba(255, 77, 77, 0.1);
}

.trend-arrow.flat {
    color: var(--text-dim);
    background: rgba(110, 118, 129, 0.1);
}

/* ===== 热度条 ===== */
.heat-bar {
    height: 6px;
    background: var(--bg-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
    border: 1px solid var(--border-color);
}

.heat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green-2), var(--neon-green));
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
    transition: width 0.8s ease;
}

/* ===== 卡片网格(盘点文章) ===== */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-green);
    box-shadow: 0 0 0 1px var(--neon-green), 0 8px 24px rgba(57, 255, 20, 0.2);
}

.article-card-img {
    height: 180px;
    overflow: hidden;
    background: var(--bg-card-2);
    position: relative;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
    opacity: 1;
}

.article-card-img .cat-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13, 17, 23, 0.85);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.article-card-body {
    padding: 18px 20px 20px;
}

.article-card-body h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.article-card-body h3:hover {
    color: var(--neon-green);
}

.article-card-body .summary {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.article-meta .comments {
    color: var(--neon-green);
}

/* ===== 投票区 ===== */
.poll-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 36px 0;
    box-shadow: var(--card-glow);
    position: relative;
}

.poll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.poll-section h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.poll-section .poll-desc {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 20px;
}

.poll-item {
    margin-bottom: 14px;
}

.poll-bar-bg {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
    position: relative;
}

.poll-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.6));
    border-right: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    padding-left: 14px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    transition: width 0.8s ease;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.poll-bar-pct {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 13px;
    font-weight: 700;
    text-shadow: var(--neon-glow);
}

/* ===== 双栏布局 ===== */
.layout-two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
}

@media (max-width: 900px) {
    .layout-two-col {
        grid-template-columns: 1fr;
    }
}

.sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-glow);
}

.side-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.side-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 13px;
}

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

.side-list .rank {
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-dim);
    border-radius: 4px;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.side-list li:nth-child(1) .rank { color: var(--neon-green); border-color: var(--neon-green); box-shadow: var(--neon-glow); }
.side-list li:nth-child(2) .rank { color: var(--neon-green-2); border-color: var(--neon-green-2); }
.side-list li:nth-child(3) .rank { color: var(--neon-blue); border-color: var(--neon-blue); }

.side-list .name {
    flex: 1;
    color: var(--text-white);
}

.side-list .value {
    color: var(--neon-green);
    font-size: 12px;
    font-weight: 700;
}

/* ===== 分类筛选 ===== */
.category-nav {
    display: flex;
    gap: 8px;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 26px;
    border: 1px solid var(--border-color);
    overflow-x: auto;
    flex-wrap: wrap;
}

.category-nav a {
    padding: 8px 18px;
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-nav a:hover,
.category-nav a.active {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    text-shadow: var(--neon-glow);
}

/* ===== 每日大赛卡片 ===== */
.daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.daily-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.daily-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 1px var(--neon-green), 0 8px 24px rgba(57, 255, 20, 0.15);
}

.daily-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-green);
    box-shadow: var(--neon-glow);
}

.daily-date {
    color: var(--neon-green);
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 22px;
    margin-bottom: 8px;
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
}

.daily-theme {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.daily-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.daily-keywords span {
    background: rgba(31, 111, 235, 0.15);
    color: var(--neon-blue);
    border: 1px solid rgba(31, 111, 235, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.daily-stats {
    display: flex;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
    font-size: 12px;
    color: var(--text-dim);
}

.daily-stats strong {
    color: var(--neon-green);
    font-size: 16px;
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    display: block;
}

/* ===== 日历导航 ===== */
.calendar-nav {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--card-glow);
}

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

.calendar-header h3 {
    font-size: 22px;
    color: var(--text-white);
}

.calendar-nav-btn {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
}

.calendar-nav-btn:hover {
    border-color: var(--neon-green);
    box-shadow: var(--neon-glow);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-weekday {
    text-align: center;
    color: var(--text-dim);
    font-size: 12px;
    padding: 8px 0;
}

.calendar-day {
    aspect-ratio: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.calendar-day.has-event {
    color: var(--text-white);
    border-color: rgba(57, 255, 20, 0.4);
}

.calendar-day.has-event::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    margin-top: 3px;
    box-shadow: var(--neon-glow);
}

.calendar-day.today {
    background: rgba(57, 255, 20, 0.12);
    border-color: var(--neon-green);
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: var(--neon-glow);
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

/* ===== 杂志式盘点排版 ===== */
.magazine-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .magazine-layout {
        grid-template-columns: 1fr;
    }
}

.magazine-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.magazine-feature:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 1px var(--neon-green);
}

.magazine-feature-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.magazine-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-feature-img .feature-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.magazine-feature-body {
    padding: 28px;
}

.magazine-feature-body h3 {
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.magazine-feature-body p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.magazine-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.magazine-mini {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.magazine-mini:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 1px var(--neon-green);
}

.magazine-mini-img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card-2);
}

.magazine-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-mini-body {
    flex: 1;
    min-width: 0;
}

.magazine-mini-body h4 {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.4;
}

.magazine-mini-body .meta {
    color: var(--text-dim);
    font-size: 12px;
}

/* ===== 分类频道卡片 ===== */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.channel-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px var(--neon-green), 0 8px 24px rgba(57, 255, 20, 0.2);
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 24px;
    box-shadow: var(--neon-glow);
    position: relative;
    z-index: 1;
}

.channel-name {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Noto Sans SC', sans-serif;
    position: relative;
    z-index: 1;
}

.channel-count {
    color: var(--neon-green);
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.channel-hotword {
    font-size: 12px;
    color: var(--text-gray);
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
    position: relative;
    z-index: 1;
}

.channel-hotword strong {
    color: var(--neon-blue);
}

/* ===== 页面标题区 ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 44px 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-glow);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.page-header h1 {
    color: var(--text-white);
    font-size: 38px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.page-header h1 .highlight {
    color: var(--neon-green);
    text-shadow: var(--neon-glow);
}

.page-header p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== 关于页 ===== */
.about-hero {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--neon-green);
    padding: 50px 40px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--card-glow);
}

.about-hero h1 {
    color: var(--neon-green);
    font-size: 44px;
    margin-bottom: 16px;
    text-shadow: var(--neon-glow);
    letter-spacing: 2px;
}

.about-hero p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--card-glow);
}

.about-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.about-section p {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.8;
}

.about-section p strong {
    color: var(--neon-green);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--neon-green);
    box-shadow: var(--neon-glow);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    padding-bottom: 22px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-green);
}

.timeline-item .year {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    color: var(--neon-green);
    font-size: 20px;
    text-shadow: var(--neon-glow);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.value-item {
    text-align: center;
    padding: 22px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--neon-green);
    box-shadow: var(--neon-glow);
}

.value-item .icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--neon-green);
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    text-shadow: var(--neon-glow);
}

.value-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-white);
    font-family: 'Noto Sans SC', sans-serif;
}

/* 团队卡片 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.team-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 26px;
    box-shadow: var(--neon-glow);
}

.team-name {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
}

.team-role {
    color: var(--neon-green);
    font-size: 12px;
}

/* ===== 联系表单 ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-glow);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 13px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.btn-submit {
    background: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.8);
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--card-glow);
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-card ul li {
    padding: 9px 0;
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px dashed var(--border-color);
}

.contact-info-card ul li:last-child {
    border-bottom: none;
}

.contact-info-card ul li strong {
    color: var(--neon-green);
}

.social-list {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-dark);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-list a:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

/* ===== 统计数据条 ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--neon-green);
    box-shadow: var(--neon-glow);
}

.stat-box .num {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 32px;
    color: var(--neon-green);
    text-shadow: var(--neon-glow);
    display: block;
    margin-bottom: 6px;
}

.stat-box .label {
    color: var(--text-gray);
    font-size: 13px;
}

/* ===== 页脚 ===== */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 50px 24px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    color: var(--neon-green);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-dim);
}

.footer-col a {
    color: var(--text-dim);
}

.footer-col a:hover {
    color: var(--neon-green);
}

.footer-logo {
    font-family: 'ZCOOL QingKe HuangYou', cursive;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 12px;
    text-shadow: var(--neon-glow);
}

.footer-bottom {
    max-width: 1300px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
}

.footer-bottom .disclaimer {
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 6px;
    opacity: 0.7;
}

/* ===== 响应式调整 ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 14px;
    }
    .nav-search {
        display: none;
    }
    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 2px;
    }
    .nav-menu a {
        padding: 6px 10px;
        font-size: 12px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero {
        padding: 30px 20px;
    }
    .main-container {
        padding: 20px 14px;
    }
    .hot-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }
    .hot-value {
        grid-column: 2;
        margin-top: 4px;
    }
    .section-title h2 {
        font-size: 24px;
    }
}
