/* ========================================
   欧冠主题模板 - 深蓝金 UEFA官方配色
   主色: #0068A8  辅色: #0E0E12
   ======================================== */

:root {
    --primary: #0068A8;
    --secondary: #0E0E12;
    --dark: #04131F;
    --light: #F5F7FA;
    --gray: #6B7280;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0068A8 0%, #0E0E12 100%);
    --gradient-dark: linear-gradient(135deg, #0068A8 0%, #04131F 50%, #0E0E12 100%);
    --gradient-stars: linear-gradient(135deg, #0E0E12 0%, #0068A8 100%);
    --shadow: 0 2px 10px rgba(0, 104, 168, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 104, 168, 0.18);
    --border-radius: 12px;
}

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

body {
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--light);
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--dark); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

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

/* ========================================
   顶部导航
   ======================================== */
.mipmb-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-text a {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800; color: var(--dark);
}
.logo-icon {
    width: 44px; height: 44px;
    background: var(--gradient-dark);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 29, 99, 0.4);
    position: relative;
}
.logo-icon::after {
    content: '★';
    position: absolute;
    top: -3px; right: -3px;
    color: var(--secondary);
    font-size: 12px;
    background: var(--primary);
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mipmb-menu { display: flex; list-style: none; gap: 5px; margin: 0; padding: 0; }
.mipmb-menu li { position: relative; }
.mipmb-menu li a {
    display: block; padding: 10px 16px;
    color: var(--dark); font-size: 15px; font-weight: 500;
    border-radius: 8px; transition: all 0.3s ease;
}
.mipmb-menu li a:hover,
.mipmb-menu li.active a {
    color: var(--white);
    background: var(--primary);
}

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-login, .btn-register {
    padding: 8px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s ease;
}
.btn-login { border: 1px solid #E5E7EB; background: transparent; color: var(--dark); }
.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.btn-register {
    background: var(--gradient); color: var(--white); border: none;
    box-shadow: 0 4px 12px rgba(0, 29, 99, 0.3);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 29, 99, 0.4); }

.mipmb-dropdown-list {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 29, 99, 0.15);
    min-width: 160px; padding: 8px 0; z-index: 100;
}
.mipmb-dropdown-item:hover .mipmb-dropdown-list { display: block; }
.mipmb-dropdown-list li a { padding: 8px 16px; border-radius: 0; }
.mipmb-dropdown-list li a:hover { background: var(--light); color: var(--primary); }

/* ========================================
   主内容区
   ======================================== */
.mipcms-main { margin-top: 80px; min-height: calc(100vh - 80px); }

/* Hero区域 - 欧冠主题 */
.hero-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 70px 20px 90px;
    position: relative;
    overflow: hidden;
}

/* 星星背景 */
.hero-section::before {
    content: '★ ★ ★ ★ ★ ★ ★ ★';
    position: absolute;
    top: 30px; left: 0; right: 0;
    text-align: center;
    font-size: 16px;
    color: var(--secondary);
    opacity: 0.4;
    letter-spacing: 30px;
    animation: starsMove 8s linear infinite;
}

@keyframes starsMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -100px;
    width: 500px; height: 500px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-league-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--secondary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    color: var(--secondary);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .gold { color: var(--secondary); }

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: var(--primary);
}

.hero-btn.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.hero-btn.outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* 奖杯展示 */
.hero-trophy {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-trophy::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: trophyGlow 3s ease-in-out infinite;
}

@keyframes trophyGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.trophy-icon {
    font-size: 100px;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.5));
}

.trophy-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.trophy-subtitle {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.trophy-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 15px;
    color: var(--secondary);
    font-size: 18px;
    position: relative;
    z-index: 1;
}

/* ========================================
   统计数字条
   ======================================== */
.stats-bar {
    background: var(--white);
    margin: -40px auto 0;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(0, 29, 99, 0.1);
}

.stat-item { text-align: center; padding: 10px; }

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   内容布局
   ======================================== */
.content-section { padding: 50px 0; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 28px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-title::after {
    content: '★';
    color: var(--secondary);
    font-size: 20px;
    margin-left: 5px;
}

.section-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
}

.main-content { min-width: 0; }

/* ========================================
   淘汰赛对阵图
   ======================================== */
.knockout-bracket {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.bracket-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bracket-title::before, .bracket-title::after {
    content: '★';
    color: var(--secondary);
    font-size: 16px;
}

.bracket-rounds {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bracket-round h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bracket-match {
    background: var(--light);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.bracket-match:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 29, 99, 0.15);
}

.bracket-match .match-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bracket-match .team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
}

.bracket-match .team.winner {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.bracket-match .team .team-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bracket-match .team .team-score {
    margin-left: 8px;
    font-weight: 700;
}

/* ========================================
   冠军球队墙
   ======================================== */
.champions-wall {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.champion-card {
    text-align: center;
    padding: 18px 10px;
    border-radius: 12px;
    background: var(--light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.champion-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 29, 99, 0.3);
    border-color: var(--secondary);
}

.champion-card:hover .team-logo-circle {
    background: var(--white);
    color: var(--primary);
    border-color: var(--secondary);
}

.champion-card:hover .trophy-count {
    color: var(--secondary);
}

.team-logo-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 29, 99, 0.15);
    transition: all 0.3s ease;
}

.team-name-bold {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trophy-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--secondary);
    font-weight: 700;
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--white);
}

/* ========================================
   比赛卡片
   ======================================== */
.match-card-eu {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card-eu::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient);
}

.match-card-eu:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.match-header-eu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #E5E7EB;
    font-size: 12px;
}

.match-league-tag {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-time-info {
    color: var(--gray);
}

.match-body-eu {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.match-team-eu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-team-eu.right { flex-direction: row-reverse; text-align: right; }

.team-logo-square {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    border: 2px solid var(--light);
    flex-shrink: 0;
    font-size: 14px;
}

.team-name-eu {
    font-size: 14px;
    font-weight: 700;
}

.vs-badge {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary);
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* ========================================
   积分榜/小组赛
   ======================================== */
.standings-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--gradient);
    border-radius: 2px;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.standings-table th {
    background: var(--light);
    color: var(--gray);
    font-weight: 600;
    padding: 10px 5px;
    text-align: center;
    font-size: 12px;
}

.standings-table td {
    padding: 12px 5px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.standings-table .team-cell {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.standings-table .team-cell .rank {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: var(--light);
    color: var(--gray);
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.standings-table tr.top2 .team-cell .rank {
    background: var(--primary);
    color: var(--white);
}

.standings-table .team-name-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.standings-table .points {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

/* ========================================
   文章列表
   ======================================== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.article-card .card-image {
    width: 260px;
    min-height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.article-card .card-image mip-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .card-image mip-img { transform: scale(1.08); }

.article-card .card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.article-card .card-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.article-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-card .card-title a { color: var(--dark); }
.article-card .card-title a:hover { color: var(--primary); }

.article-card .card-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
}

.article-card .card-meta .date { color: var(--primary); font-weight: 500; }

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

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.widget-list li a {
    display: flex;
    gap: 12px;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.widget-list li a:hover { color: var(--primary); }

.widget-list .list-num {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--light);
    color: var(--gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.widget-list li:nth-child(1) .list-num,
.widget-list li:nth-child(2) .list-num,
.widget-list li:nth-child(3) .list-num {
    background: var(--primary);
    color: var(--white);
}

.widget-list .list-info p {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

/* 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light);
    color: var(--gray);
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   分类区块
   ======================================== */
.category-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.category-section .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.category-section .category-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.category-section .category-more {
    color: var(--primary);
    font-size: 13px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #F0F0F0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.news-list .list-num {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--light);
    color: var(--gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.news-list li:nth-child(1) .list-num,
.news-list li:nth-child(2) .list-num,
.news-list li:nth-child(3) .list-num {
    background: var(--primary);
    color: var(--white);
}

.news-list a {
    flex: 1;
    color: var(--dark);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list a:hover { color: var(--primary); }

.news-list .news-time {
    color: var(--gray);
    font-size: 12px;
}

/* ========================================
   文章详情
   ======================================== */
.article-detail {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.article-detail .detail-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.article-detail .detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light);
    font-size: 14px;
    color: var(--gray);
}

.article-detail .detail-meta .source {
    color: var(--primary);
    font-weight: 600;
}

.article-detail .detail-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dark);
}

.article-detail .detail-content p { margin-bottom: 20px; }
.article-detail .detail-content h2,
.article-detail .detail-content h3 {
    margin: 30px 0 15px;
    color: var(--dark);
    font-weight: 700;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

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

.article-detail .detail-content a { color: var(--primary); }

.article-detail .detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--light);
    border-radius: 0 8px 8px 0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
}

.article-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 8px;
    max-width: 48%;
    transition: all 0.3s ease;
}

.article-nav a:hover {
    background: var(--primary);
    color: var(--white);
}

.article-nav a span { font-size: 12px; color: var(--gray); }
.article-nav a:hover span { color: rgba(255, 255, 255, 0.8); }
.article-nav .nav-title {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========================================
   分页
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--dark);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========================================
   面包屑
   ======================================== */
.breadcrumb {
    display: flex;
    gap: 8px;
    padding: 15px 0;
    font-size: 14px;
    color: var(--gray);
    align-items: center;
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: #D1D5DB; }

/* ========================================
   页脚
   ======================================== */
.mipui-footer {
    background: linear-gradient(180deg, var(--dark) 0%, #050810 100%);
    color: var(--white);
    padding: 60px 20px 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.mipui-footer::before {
    content: '★ ★ ★ ★ ★';
    position: absolute;
    top: 30px; left: 0; right: 0;
    text-align: center;
    color: var(--secondary);
    opacity: 0.2;
    letter-spacing: 50px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 8px;
}

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

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.8); }
.footer-bottom a:hover { color: var(--secondary); }

.friend-link { margin-bottom: 20px; }
.friend-link ul {
    display: flex; flex-wrap: wrap; gap: 10px;
    list-style: none; padding: 0;
}
.friend-link li {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
.friend-link a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.friend-link a:hover { color: var(--secondary); }

/* ========================================
   搜索页
   ======================================== */
.search-section { padding: 60px 0; text-align: center; }
.search-logo {
    font-size: 36px; font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark);
}
.search-form { display: inline-flex; max-width: 600px; width: 100%; }
.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}
.search-form input:focus { border-color: var(--primary); }
.search-form button {
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-form button:hover { box-shadow: 0 4px 15px rgba(0, 29, 99, 0.4); }

.hot-keywords { margin-top: 30px; }
.hot-keywords h4 {
    font-size: 16px; margin-bottom: 15px; color: var(--gray);
}
.hot-keywords ul {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; list-style: none; padding: 0;
}
.hot-keywords a {
    padding: 8px 16px; background: var(--white);
    border-radius: 20px; font-size: 14px; color: var(--gray);
    transition: all 0.3s ease;
}
.hot-keywords a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bracket-rounds { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mipmb-menu { display: none; }
    .header-actions { gap: 6px; }
    .btn-login, .btn-register { padding: 6px 12px; font-size: 12px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 15px; }
    .trophy-icon { font-size: 70px; }
    .stat-value { font-size: 28px; }
    .section-title { font-size: 22px; }
    .article-card { flex-direction: column; }
    .article-card .card-image { width: 100%; height: 180px; }
    .article-detail { padding: 20px; }
    .article-detail .detail-title { font-size: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .champions-grid { grid-template-columns: repeat(3, 1fr); }
    .match-body-eu { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .team-name-eu { font-size: 12px; }
    .bracket-rounds { grid-template-columns: 1fr; }
    .stats-bar { margin-top: -20px; padding: 20px; }
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
