﻿﻿/*
Theme Name: FIFA World Cup 2026
Theme URI: https://xn--fifa-tc5fq65k1ju.tw/
Author: FIFA世界杯资讯站
Author URI: https://xn--fifa-tc5fq65k1ju.tw/
Description: 2026 FIFA世界杯专属主题，提供赛事资讯、赛程表、资格赛等功能。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fifa-worldcup
Tags: sports, football, world-cup, responsive, mobile-friendly
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #ffffff;
}

.header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f5c518;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f5c518;
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a,
.nav-links .current-menu-item a:link,
.nav-links .current-menu-item a:visited,
.nav-links .current_page_item a:link,
.nav-links .current_page_item a:visited {
    color: #f5c518 !important;
}

.nav-links li {
    list-style: none;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.nav-links a:hover,
.nav-links a:active {
    color: #f5c518 !important;
}

.nav-links li.menu-item {
    list-style: none;
}

.nav-links li.menu-item a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-links li.menu-item a:hover {
    color: #f5c518;
}

.nav-arrow {
    font-size: 0.6rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover .nav-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-links .menu-item {
    position: relative;
}

.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 999;
    list-style: none;
}

.nav-links .menu-item:hover .sub-menu {
    display: block;
}

.nav-links .sub-menu li {
    padding: 0;
    margin: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links .sub-menu a:hover {
    background-color: rgba(245, 197, 24, 0.1);
    color: #f5c518 !important;
}

.nav-links .menu-item-has-children > a::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.6rem;
    color: #999;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links .menu-item-has-children:hover > a::after {
    color: #f5c518;
    transform: rotate(180deg);
}

.nav-links .sub-menu .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.25rem;
}

.nav-links .sub-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

.nav-links .sub-menu .sub-menu a {
    white-space: nowrap;
}

.hero {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #16213e 100%);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(245, 197, 24, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    max-width: 500px;
}

.live-badge {
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    display: inline-block;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    line-height: 1.8;
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #b8b8d0;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #be185d, #d946ef);
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 24, 93, 0.4);
}

.countdown-card {
    background: rgba(15, 20, 25, 0.9);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.15),
                inset 0 0 30px rgba(0, 255, 200, 0.02);
    position: relative;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.1) 0%, transparent 50%, rgba(0, 255, 200, 0.1) 100%);
    pointer-events: none;
}

.countdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.countdown-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ffcc;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag-icon {
    font-size: 1rem;
}

.countdown-location {
    text-align: right;
}

.countdown-location span:first-child {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-bottom: 0.2rem;
}

.location-name {
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    text-align: center;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.3rem;
}

.countdown-news {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.news-bullet {
    color: #f5c518;
    font-size: 1.2rem;
}

.news-item span:nth-child(2) {
    flex: 1;
    font-size: 0.85rem;
    opacity: 0.85;
    color: #d0d0e0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-arrow {
    color: #00ffcc;
    font-size: 1rem;
    opacity: 0.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5c518;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.dashboard-section {
    padding: 3rem 2rem;
    background: #1a1f2e;
}

.dashboard-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-icon {
    color: #00ffcc;
    font-size: 1.3rem;
}

.header-right span {
    color: #6b7280;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 20px;
}

.dashboard-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-card {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d1b69 50%, #1a1a2e 100%);
}

.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.8;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.featured-trophy {
    position: absolute;
    right: 30px;
    bottom: 10px;
    font-size: 90px;
    opacity: 0.25;
    transform: rotate(-20deg);
}

.featured-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 70%;
}

.featured-badge {
    display: inline-block;
    background: rgba(0, 255, 200, 0.2);
    border: 1px solid rgba(0, 255, 200, 0.4);
    color: #00ffcc;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
}

.featured-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #be185d, #d946ef);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.featured-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(190, 24, 93, 0.4);
}

.bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stadium-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.stadium-card .card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #00ffcc;
}

.stadium-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.stadium-card p {
    color: #a0a0b0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.stadium-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stadium-tag {
    background: rgba(245, 197, 24, 0.15);
    color: #f5c518;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.ranking-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.ranking-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.ranking-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ranking-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 255, 200, 0.2);
    border-color: #00ffcc;
}

.region-indicator {
    font-size: 0.75rem;
    color: #6b7280;
    min-width: 35px;
    text-align: center;
}

.ranking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-label {
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.85rem;
}

.ranking-season {
    color: #6b7280;
    font-size: 0.8rem;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 0;
}

.rank-badge {
    width: 22px;
    height: 22px;
    background: rgba(0, 255, 200, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffcc;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.team-flag {
    width: 28px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 3px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.team-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-name {
    flex: 1;
    color: #d0d0e0;
    font-size: 0.9rem;
}

.team-points {
    color: #8888aa;
    font-size: 0.85rem;
    font-weight: 500;
}

.ranking-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: #00ffcc;
    box-shadow: 0 0 8px rgba(0, 255, 200, 0.5);
}

.vs-label {
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.match-score {
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.broadcast-card {
    position: relative;
    overflow: hidden;
    height: 160px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.broadcast-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d1b69 100%);
}

.broadcast-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
}

.broadcast-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.broadcast-flags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.flag-icon {
    font-size: 1.5rem;
}

.broadcast-play {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    background: rgba(138, 43, 226, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.broadcast-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.broadcast-badge {
    display: inline-block;
    background: rgba(138, 43, 226, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.5);
    color: #a78bfa;
    padding: 0.25rem 0.7rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}

.broadcast-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.broadcast-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    line-height: 1.5;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    min-height: 380px;
    max-height: 420px;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.timeline-icon {
    color: #00ffcc;
    font-size: 1rem;
}

.timeline-header span:last-child {
    color: #00ffcc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.timeline-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.timeline-scroll::-webkit-scrollbar {
    width: 3px;
}

.timeline-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 200, 0.3);
    border-radius: 2px;
}

.timeline-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 200, 0.5);
}

.timeline-item {
    display: flex;
    gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item.final {
    background: linear-gradient(90deg, rgba(245, 197, 24, 0.12), transparent);
    border-radius: 6px;
    padding: 0.45rem;
    margin-top: 0.2rem;
    border: 1px solid rgba(245, 197, 24, 0.25);
}

.timeline-num {
    font-size: 0.95rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.timeline-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-subtitle {
    font-size: 0.72rem;
    color: #a0a0b5;
}

.timeline-date {
    font-size: 0.7rem;
    color: #00ffcc;
    font-weight: 500;
}

.timeline-detail {
    font-size: 0.68rem;
    color: #6b7280;
    line-height: 1.4;
}

.insights-section {
    padding: 5rem 2rem;
}

.insights-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-title .header-icon {
    font-size: 1.5rem;
    color: #00ffcc;
}

.category-tabs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #00ffcc;
    border-radius: 2px;
}

.tab {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #a0a0b0;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab.active {
    background: #00ffcc;
    color: #1a1a2e;
    border-color: #00ffcc;
}

.insights-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: none;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-card:hover .card-image img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.card-tag.tag-red {
    background: #e53935;
    color: white;
}

.card-tag.tag-green {
    background: #43a047;
    color: white;
}

.card-tag.tag-yellow {
    background: #f5c518;
    color: #1a1a2e;
}

.card-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    font-size: 0.7rem;
    color: #00ffcc;
    z-index: 1;
}

.card-content {
    padding: 1.2rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}



.card-content p {
    font-size: 0.85rem;
    color: #a0a0b0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-image {
    background: rgba(245, 197, 24, 0.1);
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
}

.insight-tag {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.insight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.insight-card p {
    opacity: 0.8;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #f5c518;
    color: #f5c518;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: #f5c518;
    color: #1a1a2e;
}

.faq-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-category {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 3px solid #6366f1;
}

.faq-item {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: #a0a0b0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #ffffff;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: #00ffcc;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0.8rem 1rem;
    opacity: 0.85;
    line-height: 1.6;
    color: #888898;
    font-size: 0.85rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.guide-section {
    padding: 5rem 2rem;
}

.guide-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.guide-main {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(243, 156, 18, 0.05));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.guide-main h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f5c518;
}

.guide-main p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.guide-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.highlight-icon {
    font-size: 1.3rem;
}

.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.guide-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #f5c518;
}

.guide-card p {
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.archive-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.history-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.history-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 3px solid #a855f7;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #a0a0b0;
    line-height: 1.4;
}

.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-desc {
    font-size: 0.9rem;
    color: #a0a0b0;
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #00ffcc;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6b7280;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .guide-container {
        grid-template-columns: 1fr;
    }
    
    .insight-card.featured {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 6rem 1rem 2rem;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .hero-left {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-right {
        max-width: 100%;
        width: 100%;
    }
    
    .live-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .countdown-card {
        padding: 1.5rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-box {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .guide-highlights {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-right {
        width: 100%;
        max-width: 400px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-cards {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        height: auto;
        min-height: 250px;
    }
    
    .featured-content {
        max-width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .live-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .broadcast-card {
        min-height: 140px;
        height: 140px;
    }
    
    .timeline-scroll {
        max-height: 250px;
    }
    
    .timeline-card {
        max-height: 350px;
        min-height: 320px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .ranking-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dashboard-section,
    .insights-section,
    .faq-section,
    .guide-section,
    .archive-section {
        padding: 3rem 1rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-desc {
        font-size: 0.8rem;
    }
    
    .broadcast-card {
        min-height: 180px;
    }
    
    .ranking-card {
        min-height: 180px;
    }
    
    .ranking-carousel {
        height: 100px;
    }
    
    .team-name {
        min-width: 50px;
        font-size: 0.7rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 5rem 0.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .live-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
        letter-spacing: 1px;
    }
    
    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .countdown-card {
        padding: 1rem;
    }
    
    .countdown-title {
        font-size: 0.9rem;
    }
    
    .countdown-grid {
        gap: 0.3rem;
    }
    
    .countdown-item {
        padding: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .news-item {
        font-size: 0.75rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-box {
        min-width: 50px;
        padding: 0.6rem 0.8rem;
    }
    
    .category-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

.schedule-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 60px;
}

.schedule-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #f5c518;
}

.schedule-hero p {
    font-size: 1.2rem;
    color: #a0a0b5;
    margin-bottom: 2rem;
}

.schedule-hero .countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.schedule-hero .countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.schedule-hero .countdown-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.schedule-hero .countdown-label {
    font-size: 0.8rem;
    color: #a0a0b5;
}

.schedule-hero .countdown-text {
    font-size: 1rem;
    color: #808095;
}

.schedule-intro {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.schedule-intro h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.schedule-intro .intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.schedule-intro .stat-item {
    text-align: center;
}

.schedule-intro .stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.schedule-intro .stat-label {
    font-size: 0.9rem;
    color: #a0a0b5;
}

.schedule-intro p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #c0c0d5;
}

.schedule-section {
    padding: 3rem 2rem;
}

.schedule-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.schedule-tabs .tab-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.schedule-tabs .tab-btn.active {
    background: linear-gradient(135deg, #f5c518 0%, #d4a81a 100%);
    color: #1a1a2e;
    font-weight: 600;
}

.schedule-content .tab-content {
    display: none;
}

.schedule-content .tab-content.active {
    display: block;
}

.schedule-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.phase-info {
    color: #a0a0b5;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.group-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.group-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.group-card h4 {
    font-size: 1.1rem;
    color: #f5c518;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.match-date {
    font-size: 0.85rem;
    color: #00ffcc;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.match-teams .team {
    font-weight: 600;
    color: #ffffff;
}

.match-teams .vs {
    color: #a0a0b5;
    font-size: 0.9rem;
}

.stadium {
    font-size: 0.8rem;
    color: #808095;
}

.view-more {
    display: block;
    margin: 2rem auto;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #f5c518 0%, #d4a81a 100%);
    border: none;
    border-radius: 30px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view-more:hover {
    transform: scale(1.05);
}

.knockout-bracket {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.round {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.round h4 {
    font-size: 1.2rem;
    color: #f5c518;
    margin-bottom: 0.5rem;
}

.round-date {
    color: #a0a0b5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bracket-match {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    color: #c0c0d5;
    font-size: 0.95rem;
}

.final-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.final-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.final-card.final {
    border-color: #f5c518;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(212, 168, 26, 0.05) 100%);
}

.final-card .match-type {
    display: block;
    font-size: 0.9rem;
    color: #f5c518;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.final-match {
    text-align: center;
}

.final-match .match-date {
    font-size: 1rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.final-match .match-teams {
    margin-bottom: 1rem;
}

.final-match .stadium {
    font-size: 0.9rem;
    color: #a0a0b5;
}

.stadiums-section {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.stadiums-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.stadiums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stadium-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stadium-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stadium-card h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stadium-card p {
    font-size: 0.9rem;
    color: #a0a0b5;
    margin-bottom: 0.3rem;
}

.stadium-card .capacity {
    font-size: 0.85rem;
    color: #808095;
}

@media (max-width: 768px) {
    .schedule-hero h1 {
        font-size: 1.8rem;
    }
    
    .schedule-hero .countdown-item {
        padding: 0.8rem 1rem;
    }
    
    .schedule-hero .countdown-num {
        font-size: 1.8rem;
    }
    
    .schedule-intro .intro-stats {
        gap: 2rem;
    }
    
    .schedule-intro .stat-num {
        font-size: 2rem;
    }
    
    .group-container {
        grid-template-columns: 1fr;
    }
    
    .final-matches {
        grid-template-columns: 1fr;
    }
    
    .stadiums-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.page-container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 6px;
}

.sidebar-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-section h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #808095;
    font-weight: 500;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-list li {
    margin-bottom: 0.1rem;
    padding: 0.15rem 0;
}

.article-list li.highlighted {
    background: rgba(0, 255, 204, 0.05);
    border-left: 3px solid #00ffcc;
    padding-left: 0.8rem;
    margin-left: -0.8rem;
}

.article-list li.highlighted a {
    color: #00ffcc;
    font-weight: 500;
}

.article-list li.category-title {
    font-size: 0.85rem;
    color: #606075;
    font-weight: 600;
    margin-top: 0.8rem;
    padding-left: 0;
    margin-left: 0;
    background: none;
    border-left: none;
}

.article-list li.group-item {
    padding-left: 1.2rem;
}

.article-list a {
    color: #9090a5;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.article-list a:hover {
    color: #ffffff;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f5c518 0%, #d4a81a 100%);
    color: #1a1a2e;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #a0a0b5;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.host-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.host-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.host-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.host-code {
    background: rgba(245, 197, 24, 0.2);
    color: #f5c518;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.host-name {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

.host-matches-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.host-match-item {
    padding: 0.4rem 0;
}

.host-match-item .match-date {
    display: block;
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.host-match-item .match-venue {
    display: block;
    color: #808095;
    font-size: 0.82rem;
    line-height: 1.4;
}

.stage-overview-content {
    overflow-x: auto;
}

.stage-table-wrapper {
    width: 100%;
}

.daily-schedule-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.day-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem;
}

.day-section h3 {
    font-size: 1.1rem;
    color: #f5c518;
    margin-bottom: 1rem;
}

.day-matches {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.daily-match {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.daily-match .match-time {
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.daily-match .match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.daily-match .team {
    font-weight: 600;
    color: #ffffff;
}

.daily-match .vs {
    color: #a0a0b5;
    font-size: 0.85rem;
}

.daily-match .stadium {
    font-size: 0.8rem;
    color: #808095;
}

.group-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.date-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem;
}

.date-section h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.round-badge {
    background: rgba(245, 197, 24, 0.15);
    color: #f5c518;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.match-time {
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.85rem;
}

.match-teams-flag {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.team-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.match-stadium {
    font-size: 0.8rem;
    color: #808095;
}

.group-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.group-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: #c0c0d5;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.group-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.group-tab.active {
    background: linear-gradient(135deg, #f5c518 0%, #d4a81a 100%);
    color: #1a1a2e;
    font-weight: 600;
}

.group-content {
    display: none;
}

.group-content.active {
    display: block;
}

.group-content h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.group-matches {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.group-match {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.group-match .match-date {
    color: #00ffcc;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.group-match .match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.group-match .team {
    font-weight: 600;
    color: #ffffff;
}

.group-match .vs {
    color: #a0a0b5;
    font-size: 0.85rem;
}

.group-match .stadium {
    font-size: 0.8rem;
    color: #808095;
}

.knockout-content {
    overflow-x: auto;
}

.knockout-bracket {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0;
    min-width: max-content;
}

.bracket-round {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    min-width: 180px;
}

.bracket-round h3 {
    font-size: 0.95rem;
    color: #f5c518;
    margin-bottom: 0.3rem;
}

.round-dates {
    font-size: 0.75rem;
    color: #808095;
    margin-bottom: 0.8rem;
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bracket-match {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-align: center;
    color: #c0c0d5;
    font-size: 0.85rem;
}

.bracket-match.final-match {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.2) 0%, rgba(212, 168, 26, 0.1) 100%);
    color: #f5c518;
    font-weight: 600;
}

.bracket-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c518;
    font-size: 1.5rem;
}

.bracket-final {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(212, 168, 26, 0.05) 100%);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    text-align: center;
}

.analysis-content p {
    line-height: 1.8;
    color: #c0c0d5;
    margin-bottom: 1rem;
}

.schedule-banner {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2d3a4b 0%, #1a2332 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 2px solid #f5c518;
}

.banner-logo .logo-icon {
    font-size: 1.5rem;
}

.banner-logo .logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: #f5c518;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2) 0%, rgba(0, 255, 204, 0.1) 100%);
    border: 1px solid rgba(0, 255, 204, 0.4);
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.banner-subtitle {
    font-size: 1rem;
    color: #a0a0b5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.banner-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info,
.update-time {
    font-size: 0.85rem;
    color: #808095;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-stats-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-stats-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #f5c518;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stats-content .stat-item {
    text-align: center;
}

.stats-content .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.stats-content .stat-label {
    font-size: 0.75rem;
    color: #808095;
}

.team-list {
    list-style: none;
    padding: 0;
}

.team-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #c0c0d5;
}

.main-content {
    min-width: 0;
}

.article-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #f5c518;
}

.article-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.article-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-desc {
    color: #a0a0b5;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.group-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
}

.group-card h3 {
    font-size: 1.1rem;
    color: #00ffcc;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.group-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
}

.group-table th,
.group-table td {
    padding: 0.6rem 0.4rem;
    text-align: left;
    font-size: 0.9rem;
}

.group-table th {
    color: #a0a0b5;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.group-table td {
    color: #c0c0d5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.group-table tr:last-child td {
    border-bottom: none;
}

.group-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 8px;
    color: #00ffcc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.group-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2) 0%, rgba(0, 255, 204, 0.1) 100%);
    border-color: rgba(0, 255, 204, 0.5);
    transform: translateY(-2px);
}

.group-schedule-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.group-schedule-placeholder p {
    color: #a0a0b5;
    font-size: 0.95rem;
    text-align: center;
}

.knockout-intro {
    margin-bottom: 2rem;
}

.intro-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.intro-text {
    color: #c0c0d5;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.knockout-round-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.knockout-round-card h3 {
    font-size: 1.1rem;
    color: #00ffcc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.match-item {
    color: #c0c0d5;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.match-item:last-child {
    border-bottom: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2) 0%, rgba(0, 255, 204, 0.1) 100%);
    border: 1px solid rgba(0, 255, 204, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.3) 0%, rgba(0, 255, 204, 0.2) 100%);
    border-color: rgba(0, 255, 204, 0.6);
    transform: translateY(-3px);
}

.arrow-up {
    font-size: 1.5rem;
    color: #00ffcc;
    font-weight: bold;
}

.meta {
    color: #a0a0b5;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    line-height: 1.8;
    color: #c0c0d5;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tournament-highlights {
    background: rgba(245, 197, 24, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.tournament-highlights h3 {
    font-size: 1.1rem;
    color: #f5c518;
    margin-bottom: 1rem;
}

.tournament-highlights ul {
    list-style: none;
    padding: 0;
}

.tournament-highlights li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c0c0d5;
    font-size: 0.95rem;
}

.tournament-highlights li:last-child {
    border-bottom: none;
}

.timezone-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.timezone-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.timezone-table th,
.timezone-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timezone-table th {
    background: rgba(245, 197, 24, 0.1);
    color: #f5c518;
    font-weight: 600;
}

.timezone-table tr:last-child td {
    border-bottom: none;
}

.timezone-table td {
    color: #c0c0d5;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.tips-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c0c0d5;
    font-size: 0.95rem;
}

.tips-list li:last-child {
    border-bottom: none;
}

.viewing-content h3,
.qualification-content h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.viewing-content h3:first-child,
.qualification-content h3:first-child {
    margin-top: 0;
}

.viewing-content p,
.qualification-content p {
    color: #c0c0d5;
    line-height: 1.8;
}

.viewing-content ul,
.qualification-content ul {
    list-style: none;
    padding: 0;
}

.viewing-content li,
.qualification-content li {
    padding: 0.6rem 0;
    color: #c0c0d5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #808095;
}

.host-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.host-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.host-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.host-flag {
    font-size: 1.5rem;
}

.host-header h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.host-matches {
    list-style: none;
    padding: 0;
}

.host-matches li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c0c0d5;
    font-size: 0.9rem;
}

.host-matches li:last-child {
    border-bottom: none;
}

.stage-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-table th {
    background: rgba(30, 30, 45, 0.8);
    color: #a0a0b5;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    text-align: left;
}

.stage-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #c0c0d5;
    font-size: 0.9rem;
}

.stage-table tr:last-child td {
    border-bottom: none;
}

.stage-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.stage-table td:first-child {
    font-weight: 600;
    color: #ffffff;
}

.stage-table td:nth-child(3) {
    color: #00ffcc;
    font-weight: 600;
}

.schedule-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.schedule-tabs .tab-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.schedule-tabs .tab-btn.active {
    background: linear-gradient(135deg, #f5c518 0%, #d4a81a 100%);
    color: #1a1a2e;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.match-card .match-date {
    font-size: 0.85rem;
    color: #00ffcc;
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.match-card .match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.match-card .team {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.match-card .vs {
    color: #a0a0b5;
    font-size: 0.85rem;
}

.match-card .stadium {
    font-size: 0.8rem;
    color: #808095;
    display: block;
}

.knockout-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.knockout-stage {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.knockout-stage h3 {
    font-size: 1.1rem;
    color: #f5c518;
    margin-bottom: 0.5rem;
}

.stage-date {
    color: #a0a0b5;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.knockout-matches {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.knockout-match {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    color: #c0c0d5;
    font-size: 0.9rem;
}

.final-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.final-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-card.final {
    border-color: #f5c518;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(212, 168, 26, 0.05) 100%);
}

.final-card .match-type {
    display: block;
    font-size: 0.9rem;
    color: #f5c518;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.final-match {
    text-align: center;
}

.final-match .match-date {
    font-size: 1rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.final-match .match-teams {
    margin-bottom: 1rem;
}

.final-match .stadium {
    font-size: 0.9rem;
    color: #a0a0b5;
}

.stadiums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stadium-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stadium-card h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stadium-card p {
    font-size: 0.85rem;
    color: #a0a0b5;
    margin-bottom: 0.3rem;
}

.stadium-card .capacity {
    font-size: 0.8rem;
    color: #808095;
}

.stadium-card .matches {
    font-size: 0.8rem;
    color: #00ffcc;
    margin-top: 0.3rem;
}

.sidebar-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.countdown-card,
.news-card,
.quick-links-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-card h3,
.news-card h3,
.quick-links-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #f5c518;
}

.countdown-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.countdown-block {
    text-align: center;
    flex: 1;
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    color: #a0a0b5;
}

.countdown-note {
    font-size: 0.8rem;
    color: #808095;
    text-align: center;
}

.news-list,
.links-list {
    list-style: none;
    padding: 0;
}

.news-list li,
.links-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-list li:last-child,
.links-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-list a,
.links-list a {
    color: #c0c0d5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-list a:hover,
.links-list a:hover {
    color: #f5c518;
}

.news-date {
    font-size: 0.75rem;
    color: #808095;
    display: block;
    margin-top: 0.3rem;
}

@media (max-width: 1200px) {
    .page-container {
        grid-template-columns: 220px 1fr 280px;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .page-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar-left,
    .sidebar-right {
        position: static;
    }
    
    .sidebar-left {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .sidebar-right {
        order: 3;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }
    
    .article-section {
        padding: 1.5rem;
    }
    
    .article-section h1 {
        font-size: 1.5rem;
    }
    
    .schedule-banner {
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }
    
    .banner-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .banner-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
        line-height: 1.5;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
    }
    
    .banner-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-info,
    .update-time {
        font-size: 0.75rem;
    }
    
    .host-grid {
        grid-template-columns: 1fr;
    }
    
    .stage-table th,
    .stage-table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .match-grid {
        grid-template-columns: 1fr;
    }
    
    .knockout-stages {
        grid-template-columns: 1fr;
    }
    
    .final-matches {
        grid-template-columns: 1fr;
    }
    
    .stadiums-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .countdown-display {
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.4rem;
    }
}

.group-title {
    font-size: 1.2rem;
    color: #f5c518;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.standings-table-wrapper,
.qualified-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.standings-table,
.qualified-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.standings-table th,
.standings-table td,
.qualified-table th,
.qualified-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.standings-table th,
.qualified-table th {
    background: rgba(245, 197, 24, 0.1);
    color: #f5c518;
    font-weight: 600;
    font-size: 0.9rem;
}

.standings-table td,
.qualified-table td {
    color: #c0c0d5;
    font-size: 0.9rem;
}

.standings-table tr:last-child td,
.qualified-table tr:last-child td {
    border-bottom: none;
}

.standings-table tr:hover td,
.qualified-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.qualified-row {
    background: rgba(0, 255, 204, 0.05);
}

.qualified-row td {
    color: #00ffcc;
    font-weight: 500;
}

.match-results {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.match-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.match-result-item:last-child {
    border-bottom: none;
}

.match-teams {
    color: #c0c0d5;
    font-size: 0.95rem;
}

.match-score {
    color: #00ffcc;
    font-weight: 600;
    font-size: 1rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.highlights-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c0c0d5;
    line-height: 1.6;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list strong {
    color: #f5c518;
}

@media (max-width: 768px) {
    .standings-table th,
    .standings-table td,
    .qualified-table th,
    .qualified-table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .group-title {
        font-size: 1.1rem;
    }
    
    .match-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .match-score {
        font-size: 0.9rem;
    }
}

.flag-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.flag-wrapper img {
    width: 20px;
    height: 14px;
    vertical-align: middle;
    margin-right: 0.3rem;
    aspect-ratio: 20 / 14;
    object-fit: contain;
}

@media (max-width: 768px) {
    .flag-wrapper img {
        width: 18px;
    }
}

.news-article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.news-article:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 197, 24, 0.2);
    transform: translateY(-2px);
}

.news-category {
    display: inline-block;
    background: rgba(245, 197, 24, 0.15);
    color: #f5c518;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.news-article h2 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.news-meta {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 1rem;
}

.news-article p {
    color: #c0c0d5;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more {
    color: #00ffcc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00e6bb;
    text-decoration: underline;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    color: #c0c0d5;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(245, 197, 24, 0.2);
    color: #f5c518;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.pagination .current-page {
    background: rgba(245, 197, 24, 0.2);
    color: #f5c518;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.pagination .page-link {
    color: #c0c0d5;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pagination .next-page {
    background: rgba(245, 197, 24, 0.1);
    color: #f5c518;
}

.pagination .next-page:hover {
    background: rgba(245, 197, 24, 0.2);
}

@media (max-width: 768px) {
    .news-article {
        padding: 1rem;
    }
    
    .news-article h2 {
        font-size: 1.1rem;
    }
    
    .news-article p {
        font-size: 0.9rem;
    }
    
    .tag-cloud {
        gap: 0.3rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

.detail-article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-title {
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
    margin: 1rem 0;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #8888a0;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-content {
    line-height: 1.9;
    color: #d0d0e0;
}

.article-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: #e0e0f0;
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(245, 197, 24, 0.05);
    border-left: 4px solid #f5c518;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.toc-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(245, 197, 24, 0.1);
}

.toc-title {
    color: #f5c518;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.7rem;
}

.toc-list a {
    color: #00ffcc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.toc-list a:hover {
    color: #00e6bb;
    text-decoration: underline;
}

.article-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid rgba(245, 197, 24, 0.2);
    font-weight: 600;
}

.article-content h4 {
    color: #f5c518;
    font-size: 1.15rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.group-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin: 1.5rem 0;
}

.group-list li {
    margin-bottom: 0.6rem;
}

.highlight-box {
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #00ffcc;
    margin-top: 0;
}

.related-link {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #00ffcc;
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.related-link h4 {
    margin: 0 0 0.8rem 0;
}

.related-link a {
    color: #00ffcc;
    text-decoration: none;
}

.related-link a:hover {
    text-decoration: underline;
}

.timeline-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin: 1.5rem 0;
}

.timeline-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.timeline-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.closing-note {
    color: #8888a0;
    font-style: italic;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.author-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.author-section h4 {
    color: #f5c518;
    margin-top: 0;
    margin-bottom: 1rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.author-desc {
    color: #a0a0b5;
    line-height: 1.7;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.prev-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.prev-article:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-label {
    display: block;
    color: #8888a0;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.nav-title {
    color: #fff;
    font-weight: 500;
}

.back-to-list {
    color: #f5c518;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-list:hover {
    background: rgba(245, 197, 24, 0.1);
    border-color: #f5c518;
}

@media (max-width: 768px) {
    .detail-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        gap: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
    }
    
    .article-nav {
        flex-direction: column;
    }
    
    .prev-article {
        width: 100%;
    }
    
    .group-list,
    .timeline-list {
        padding-left: 2rem;
    }
}
