/* ============================================
   Glassmorphism 玻璃拟态风格 - 主样式文件
   版本: 1.0
   作者: LECMS Team
   ============================================ */

/* CSS变量定义 - 玻璃拟态配色方案 */
:root {
    /* 主色调 */
    --primary-color: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    
    /* 玻璃拟态背景 */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-light: rgba(255, 255, 255, 0.12);
    --glass-bg-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-border-light: rgba(255, 255, 255, 0.25);
    
    /* 页面背景渐变 */
    --bg-gradient-start: #0f172a;
    --bg-gradient-mid: #1e1b4b;
    --bg-gradient-end: #312e81;
    
    /* 文字颜色 */
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* 状态颜色 */
    --live-color: #ef4444;
    --live-glow: rgba(239, 68, 68, 0.5);
    --end-color: #10b981;
    --upcoming-color: #f59e0b;
    
    /* 阴影效果 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* 间距 */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    
    /* 模糊度 */
    --blur-sm: 8px;
    --blur-md: 16px;
    --blur-lg: 24px;
    --blur-xl: 40px;
}

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

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

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 背景装饰元素 */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* 链接样式 */
a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* 图片样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 列表样式 */
ul, ol {
    list-style: none;
}

/* ============================================
   玻璃拟态工具类
   ============================================ */

/* 基础玻璃效果 */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.glass-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border: 1px solid var(--glass-border-light);
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 玻璃卡片 */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ============================================
   布局系统
   ============================================ */

/* 容器 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container_left {
    width: 880px;
    float: left;
}

.container_right {
    width: 360px;
    float: right;
}

/* 清除浮动 */
.float-clear::after {
    content: '';
    display: table;
    clear: both;
}

/* 弹性布局 */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

.flex-1 {
    flex: 1;
}

/* 网格布局 */
.grid {
    display: grid;
}

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

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

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

.gap-4 {
    gap: var(--space-md);
}

.gap-6 {
    gap: var(--space-lg);
}

/* ============================================
   头部导航
   ============================================ */

.header {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header_menu {
    display: flex;
    gap: var(--space-xl);
}

.header_menu a {
    color: var(--text-secondary);
    font-size: 15px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.header_menu a:hover,
.header_menu a.active {
    color: var(--text-primary);
    background: var(--glass-bg-light);
}

.header_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.header_menu a:hover::after,
.header_menu a.active::after {
    width: 100%;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   按钮样式
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm), 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: var(--shadow-md), 0 0 30px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-sm));
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    box-shadow: var(--shadow-md);
}

.btn-live {
    background: linear-gradient(135deg, var(--live-color), #dc2626);
    color: white;
    animation: pulse-glow 2s infinite;
}

.btn-live:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--live-glow);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--live-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--live-glow);
    }
}

/* ============================================
   比赛卡片样式
   ============================================ */

.match-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.match-card.live::before {
    background: linear-gradient(90deg, var(--live-color), #dc2626);
    opacity: 1;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
}

.team {
    flex: 1;
    text-align: center;
}

.team img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
    background: var(--glass-bg);
}

.match-card:hover .team img {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.team .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-sm);
}

.vs {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
}

.match-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.match-league {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
}

.info_right {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info_right.start {
    background: linear-gradient(135deg, var(--live-color), #dc2626);
    color: white;
    animation: live-pulse 2s infinite;
}

.info_right.end {
    background: var(--end-color);
    color: white;
}

.info_right.upcoming {
    background: var(--upcoming-color);
    color: white;
}

/* ============================================
   新闻/文章卡片
   ============================================ */

.article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.article-card .thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--glass-bg-dark);
}

.article-card .content {
    padding: var(--space-lg);
}

.article-card .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .meta {
    display: flex;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 13px;
    margin-top: var(--space-md);
}

/* ============================================
   视频卡片
   ============================================ */

.video-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.video-card .thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--glass-bg-dark);
    position: relative;
}

.video-card .thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card .thumb::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary-color);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .thumb::after,
.video-card:hover .thumb::before {
    opacity: 1;
}

.video-card .content {
    padding: var(--space-lg);
}

.video-card .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.video-card .meta {
    display: flex;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 13px;
}

.video-card .views {
    position: absolute;
    bottom: 80px;
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

/* ============================================
   筛选标签
   ============================================ */

.match_filter {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.match_filter span {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
}

.match_filter span:hover {
    background: var(--glass-bg-light);
    color: var(--text-primary);
}

.match_filter span.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm), 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ============================================
   分页样式
   ============================================ */

.pagination-box {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.pagination {
    display: flex;
    gap: var(--space-sm);
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: var(--space-sm) var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination a:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.pagination .active span,
.pagination .current span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ============================================
   面包屑导航
   ============================================ */

.position-container {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
}

.position-container a {
    color: var(--text-secondary);
}

.position-container a:hover {
    color: var(--primary-light);
}

.position-container span {
    color: var(--text-muted);
}

/* ============================================
   文章详情页
   ============================================ */

.article-detail {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.article-detail h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
    font-size: 14px;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content p {
    margin-bottom: var(--space-md);
}

.article-nav {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

.article-nav p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* ============================================
   直播详情页
   ============================================ */

.live-video-container {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.live-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--glass-bg-dark);
}

.signal-list {
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.signal-list a {
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.signal-list a:hover,
.signal-list a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ============================================
   页脚
   ============================================ */

.footer {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border-top: 1px solid var(--glass-border);
    padding: var(--space-xl) 0;
    margin-top: var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   移动端底部导航
   ============================================ */

.bottomnav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border-top: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
    z-index: 1000;
}

.bottomnav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.bottomnav ul li {
    flex: 1;
    text-align: center;
}

.bottomnav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-size: 12px;
    padding: var(--space-sm);
}

.bottomnav ul li a:hover,
.bottomnav ul li a.active {
    color: var(--primary-light);
}

.bottomnav ul li a .icon {
    font-size: 20px;
}

/* ============================================
   间距工具类
   ============================================ */

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }

.pd10 { padding: 10px; }
.pd20 { padding: 20px; }
.pd30 { padding: 30px; }
.pd40 { padding: 40px; }

/* ============================================
   响应式设计
   ============================================ */

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--space-md);
    }
    
    .container_left {
        width: calc(100% - 380px);
    }
    
    .container_right {
        width: 360px;
    }
}

@media (max-width: 992px) {
    .container_left,
    .container_right {
        width: 100%;
        float: none;
    }
    
    .container_right {
        margin-top: var(--space-lg);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .header_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur-lg));
        -webkit-backdrop-filter: blur(var(--blur-lg));
        flex-direction: column;
        padding: var(--space-md);
        border-top: 1px solid var(--glass-border);
        box-shadow: var(--shadow-lg);
    }
    
    .header_menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .match-teams {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .vs {
        order: 1;
    }
    
    .team:first-child {
        order: 0;
    }
    
    .team:last-child {
        order: 2;
    }
    
    .team img {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .bottomnav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .article-detail h1 {
        font-size: 22px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================
   加载动画
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   滚动条美化
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--glass-border-light);
}