/* ========================================
   五大联赛模板 - 英超红军红
   主色: #000000  辅色: #666666
   ======================================== */

:root {
    --primary: #000000;
    --secondary: #666666;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --gray: #6B7280;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #000000 0%, #666666 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #000000 100%);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 30px rgba(200, 16, 46, 0.15);
    --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-color: 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: 40px; height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 900; font-size: 18px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.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(--primary); color: var(--white); border: none; }
.btn-register:hover { background: var(--dark); transform: translateY(-2px); }

.mipmb-dropdown-list {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    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: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(255, 255, 255, 0.05);
    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, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

/* 联赛统计 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   内容布局
   ======================================== */
.content-section { padding: 60px 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(--primary);
    border-radius: 3px;
}

.section-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

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

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

/* ========================================
   文章列表
   ======================================== */
.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(--primary);
    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; }

/* ========================================
   球队卡片网格
   ======================================== */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.team-card {
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    background: var(--light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.team-logo {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    border: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.team-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* ========================================
   积分榜
   ======================================== */
.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: 700;
    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(--primary);
    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.top4 .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;
}

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

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

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

.match-league {
    color: var(--primary);
    font-weight: 600;
}

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

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

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

.match-team-logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--light);
    flex-shrink: 0;
}

.match-team-name {
    font-size: 14px;
    font-weight: 600;
}

.match-vs {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    padding: 5px 15px;
    background: var(--light);
    border-radius: 6px;
}

/* ========================================
   侧边栏
   ======================================== */
.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: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
    margin-top: 60px;
}

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

.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(--white);
}

.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(--white);
    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, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    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(--white); }

.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.1);
    border-radius: 5px;
}
.friend-link a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.friend-link a:hover { color: var(--white); }

/* ========================================
   搜索页
   ======================================== */
.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 { background: var(--dark); }

.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; }
}

@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; }
    .hero-stats { padding: 20px; }
    .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; }
    .teams-grid { grid-template-columns: repeat(3, 1fr); }
    .match-body { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .match-team-name { font-size: 12px; }
}

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