:root {
    --fifa-blue: #0066b3;
    --fifa-light-blue: #00a8ff;
    --fifa-green: #009639;
    --fifa-gold: #f0b323;
    --fifa-red: #e41e26;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --text-light-muted: #999999;
    --border-color: #e9ecef;
    --shadow-card: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-card-hover: 0 15px 30px rgba(0,0,0,0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}
.container { max-width: 1400px; margin: 0 auto; padding: 10px 24px; }
.navbar-custom {
    background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-green) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: #fff !important; }
.nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 500; margin: 0 5px; }
.nav-link:hover, .nav-link.active { color: var(--fifa-gold) !important; }
.hero {
    background: linear-gradient(rgba(0,102,179,0.85), rgba(0,150,57,0.85)), url('https://images.unsplash.com/photo-1595341888016-a392ef81b7de?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    padding: 150px 0 180px;
    color: white;
}
.hero h1 { font-size: 3.8rem; font-weight: 800; }
.hero h1 span { color: var(--fifa-gold); }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 20px; }
.countdown-box {
    background-color: rgba(0,0,0,0.7);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
}
.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--fifa-gold);
    line-height: 1;
}
.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    color: #ccc;
}
.btn-gold {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
    border: none;
    transition: 0.3s;
}
.btn-gold:hover { opacity: 0.9; color: var(--text-dark); transform: translateY(-2px); }
.btn-outline-gold {
    border: 2px solid #f8f9fa;
    color: #f8f9fa;
    background: transparent;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-gold:hover { background: var(--fifa-gold); color: var(--text-dark); }
.btn-primary-fifa {
    background: var(--fifa-blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
}
.btn-primary-fifa:hover { background: #005a9e; color: #fff; transform: translateY(-2px); }
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--fifa-blue);
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--fifa-gold);
}
.section-title-left {
    color: var(--fifa-blue);
    border-left: 5px solid var(--fifa-gold);
    padding-left: 1.2rem;
    margin: 2rem 0 1.5rem;
    font-weight: 700;
    font-size: 1.6rem;
}
.card-match {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 100%;
}
.card-match:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}
.card-bg {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
    height: 100%;
    box-shadow: var(--shadow-card);
}
.card-bg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}
.card-dark {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
}
.stadium-card { overflow: hidden; }
.stadium-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}
.stadium-card:hover .stadium-img { transform: scale(1.05); }
.data-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--fifa-blue);
}
.live-badge {
    background-color: var(--fifa-red);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}
.team-flag {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.news-date { color: var(--fifa-blue); font-weight: 600; min-width: 70px; }
.news-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}
.news-item:last-child { border: none; }
.news-img {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.news-title { margin: 8px 0 4px; font-size: 1rem; font-weight: 600; }
.news-title a { color: var(--text-dark); text-decoration: none; transition: 0.2s; }
.news-title a:hover { color: var(--fifa-blue); }
.news-intro { color: var(--text-muted); font-size: 0.9rem; margin: 4px 0 0; }
.breadcrumb-custom {
    padding: 16px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.breadcrumb-custom a { color: var(--fifa-blue); text-decoration: none; }
.breadcrumb-custom a:hover { text-decoration: underline; }
.breadcrumb-custom span { margin: 0 6px; }
.list-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}
.list-item:last-child { border: none; }
.list-thumb {
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.list-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.list-info { flex: 1; }
.list-info h4 { margin: 0 0 8px; font-size: 1.15rem; }
.list-info h4 a { color: var(--text-dark); text-decoration: none; transition: 0.2s; }
.list-info h4 a:hover { color: var(--fifa-blue); }
.list-info p { color: var(--text-muted); font-size: 0.9rem; margin: 6px 0; }
.list-meta { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
.list-meta span { margin-right: 16px; }
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px 0 10px;
    flex-wrap: wrap;
}
.pagination b {
    color: #fff;
    border: 1px solid var(--fifa-blue);
    background: var(--fifa-blue);
}
.pagination a, .pagination b {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}
.pagination a {
    background: var(--bg-card);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}
.pagination a:hover { background: var(--fifa-blue); color: #fff; border-color: var(--fifa-blue); }
.pagination span.current { background: var(--fifa-blue); color: #fff; }
.detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fifa-blue);
    margin: 0 0 16px;
    line-height: 1.4;
}
.detail-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    word-break: break-word;
}
.detail-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.detail-content p { margin: 0 0 16px; }
.detail-content h2, .detail-content h3, .detail-content h4 { margin: 24px 0 12px; color: var(--fifa-blue); }
.detail-tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.detail-tags a {
    display: inline-block;
    background: rgba(0,102,179,0.1);
    color: var(--fifa-blue);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    margin: 4px 4px 4px 0;
    transition: 0.2s;
}
.detail-tags a:hover { background: var(--fifa-blue); color: white; }
.prev-next {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.prev-next a {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: 0.2s;
}
.prev-next a:hover { background: var(--fifa-blue); color: #fff; border-color: var(--fifa-blue); }
.prev-next .label { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.prev-next a:hover .label { color: rgba(255,255,255,0.7); }
.sidebar-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}
.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fifa-blue);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-list li:last-child { border: none; }
.sidebar-list li .num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fifa-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sidebar-list li a { color: var(--text-dark); text-decoration: none; font-size: 0.9rem; transition: 0.2s; flex: 1; }
.sidebar-list li a:hover { color: var(--fifa-blue); }
.sidebar-list li .date { color: var(--text-muted); font-size: 0.8rem; flex-shrink: 0; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    display: inline-block;
    background: rgba(0,102,179,0.1);
    color: var(--fifa-blue);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.2s;
}
.tag-cloud a:hover { background: var(--fifa-blue); color: white; }
.layout-2col { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.cate-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.cate-tabs a {
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--fifa-blue);
    color: white;
    transition: 0.2s;
}
.cate-tabs a:hover { opacity: 0.9; }
.cate-tabs a.current { background: var(--fifa-gold); color: var(--text-dark); }
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.section-header .emoji { font-size: 2rem; }
.section-header h3 { font-size: 1.5rem; font-weight: 700; margin: 0; color: var(--fifa-blue); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.flink a {
    display: inline-block;
    background-color: #f0f7ff;
    color: var(--fifa-blue);
    padding: 12px 25px;
    margin: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.flink a:hover {
    background-color: var(--fifa-blue);
    color: white;
    border-color: var(--fifa-blue);
    transform: translateY(-3px);
}
.footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding-top: 60px;
}
.footer a { color: #ddd; text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .hero { padding: 60px 0 40px; }
    .hero h1 { font-size: 1.8rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .layout-2col { grid-template-columns: 1fr; }
    .list-item { flex-direction: column; }
    .list-thumb { width: 100%; height: 180px; }
    .prev-next { flex-direction: column; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .countdown-number { font-size: 2.5rem; }
    .data-stat { font-size: 1.8rem; }
    .navbar-brand { font-size: 1.2rem; }
    .btn-gold, .btn-outline-gold { padding: 10px 20px; font-size: 0.9rem; }
    .navbar-custom .container { padding: 0 12px; }
    .navbar-brand img { height: 36px !important; }
    .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .navbar-collapse.open {
        max-height: 500px;
    }
    .navbar-collapse .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-collapse .btn { margin-bottom: 10px; }
    .detail-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fifa-blue);
  margin: 0 0 16px;
  line-height: 1.4;
}
    .card-dark {padding: 10px;}
}
