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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #188630;
    --brand-color: #188630;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #fff;
    --border-color: #ddd;
    --hover-color: #156b28;
    --team-name-color: #1f2937;
    --competition-color: #6b7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

/* 导航栏 */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 0;
}

/* Mobile menu and search buttons */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-search-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: absolute;
    right: 0;
}

.mobile-menu-btn:hover,
.mobile-search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-menu-btn:active,
.mobile-search-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn {
    position: absolute;
    left: 0;
}

.mobile-search-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Hamburger icon - enhanced design */
.mobile-menu-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger-line:nth-child(1) {
    margin-top: 0;
}

.hamburger-line:nth-child(3) {
    margin-bottom: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 22px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 22px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-box {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
    color: var(--text-light);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-color);
    background: transparent;
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-close:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.search-results {
    margin-top: 1rem;
    background-color: var(--white);
    border-radius: 12px;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
}

.search-results.has-results {
    display: block;
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--bg-color);
}

.search-result-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.search-result-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.nav-brand {
    flex-shrink: 0;
    text-align: left;
    margin-right: 2rem;
}

.nav-brand a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Desktop Search Box */
.desktop-search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    order: 999;
}

.desktop-search-box:hover,
.desktop-search-box:focus-within {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.desktop-search-icon {
    color: var(--white);
    flex-shrink: 0;
    opacity: 0.8;
}

.desktop-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    width: 100%;
}

.desktop-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-shrink: 0;
    margin-right: auto;
    white-space: nowrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: var(--secondary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none; /* 默认隐藏 */
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    /* 使用flexbox实现多列布局 */
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: flex;
}

/* 每个分类及其项目组成一列 */
.dropdown-menu li.menu-category {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
    margin: 0;
    padding: 1rem;
    border-right: 1px solid rgba(0,0,0,0.1);
}

/* Competitions 顶部标题 */
.dropdown-menu li.menu-header {
    flex: 0 0 100%;
    padding: 0.75rem 1rem 0.5rem 1.5rem !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropdown-menu li.menu-header > a {
    font-weight: 700;
    font-size: 1.1rem !important;
    color: var(--accent-color);
    text-decoration: none;
    white-space: nowrap;
}

/* Teams 下拉专用列表样式 */
.dropdown-menu .teams-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu .teams-menu-list--two-columns {
    column-count: 2;
    column-gap: 2rem;
}

.dropdown-menu li.menu-category:last-child {
    border-right: none;
}

/* 分类标题 */
.dropdown-menu li.menu-category > a {
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
    font-weight: bold;
    font-size: 0.95rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    text-decoration: none;
    white-space: nowrap;
}

/* 分类下的项目列表容器 */
.dropdown-menu li.menu-category + li:not(.menu-category) {
    display: none; /* 隐藏，因为项目会通过JavaScript添加到分类容器中 */
}

/* 普通菜单项（分类下的项目） */
.dropdown-menu li:not(.menu-category) {
    margin: 0;
    padding: 0;
}

.dropdown-menu li:not(.menu-category) a {
    color: var(--secondary-color);
    padding: 0.4rem 0;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
}

.dropdown-menu a:hover {
    color: var(--accent-color);
    background-color: transparent;
}

.arrow {
    font-size: 0.8rem;
}

/* 主要内容 */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

/* Content pages (About/Privacy/Contact/Terms) */
.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.content-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-intro {
    max-width: 900px;
    margin: 0.5rem auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.content-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.content-card p {
    margin: 0.75rem 0;
    color: var(--text-color);
    line-height: 1.9;
}

.content-card ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.content-card li {
    margin: 0.4rem 0;
    line-height: 1.8;
}

.content-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

/* News Grid Layout */
.news-header {
    margin-bottom: 2.5rem;
}

.news-page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.news-categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-filter-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(24, 134, 48, 0.22);
}

.category-filter-btn.active {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* 常见笔记本宽度开始 4 列展示 */
@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.4rem;
    }
}

.news-grid-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    will-change: transform;
}

.news-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(24, 134, 48, 0.35);
}

.news-grid-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-grid-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.news-grid-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-grid-card:hover .news-grid-card__image {
    transform: scale(1.05);
}

.news-grid-card__placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    color: #9ca3af;
}

.news-grid-card__category-pill {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
    /* 前台列表已移除图片上的栏目标签，这里兜底隐藏，避免历史缓存/其它模板复用导致叠字 */
    display: none;
}

.news-grid-card__content {
    padding: 1.1rem 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.news-grid-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.news-grid-card:hover .news-grid-card__title {
    color: var(--primary-color);
}

.news-grid-card__meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    flex-wrap: wrap;
    row-gap: 0.15rem;
    min-width: 0;
}

.news-grid-card__date {
    font-weight: 500;
}

.news-grid-card__meta-dot {
    color: #9ca3af;
}

.news-grid-card__meta-category {
    font-weight: 500;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-grid-card__summary {
    margin-top: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #4b5563;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.category-filter-btn:focus-visible,
.news-grid-card__link:focus-visible {
    outline: 3px solid rgba(24, 134, 48, 0.35);
    outline-offset: 3px;
    border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .category-filter-btn,
    .news-grid-card,
    .news-grid-card__image {
        transition: none !important;
    }
    .news-grid-card:hover {
        transform: none;
    }
    .category-filter-btn:hover {
        transform: none;
    }
}

/* News Pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-light);
}

/* Legacy styles for backward compatibility */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.news-card__image-wrap {
    flex-shrink: 0;
    width: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.news-card__image {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.news-card__content {
    flex: 1;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.news-card__title a {
    color: var(--text-color);
    text-decoration: none;
}

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

.news-card__summary {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.link-more {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
}

.link-more:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.page-link {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-color);
}

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

.news-article__header {
    margin-bottom: 1.5rem;
}

.news-article__meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.news-breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.news-breadcrumb__link {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: #f3f4f6;
    color: var(--text-light);
    text-decoration: none;
    gap: 0.3rem;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.news-breadcrumb__link::before {
    content: '←';
    font-size: 0.9rem;
}

.news-breadcrumb__link:hover {
    background-color: #e5e7eb;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.news-article__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-article__cover {
    margin: 1.5rem 0 1.75rem;
}

.news-article__cover img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.news-article__content {
    line-height: 1.9;
    font-size: 1.03rem;
    color: var(--text-color);
}

/* News detail page layout */
.news-article {
    max-width: 100%;
    margin: 2.5rem 0 2rem;
    padding: 2rem 2.25rem;
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.news-article__meta .badge {
    margin-right: 0.75rem;
}

.news-article__date::before {
    content: '•';
    margin: 0 0.5rem 0 0.25rem;
    color: #9ca3af;
}

.news-article__content p {
    margin-bottom: 1.1rem;
}

.news-article__content h2,
.news-article__content h3 {
    margin: 1.75rem 0 0.75rem;
    font-weight: 600;
    color: #111827;
}

.news-article__content h2 {
    font-size: 1.5rem;
}

.news-article__content h3 {
    font-size: 1.25rem;
}

.news-article__content ul,
.news-article__content ol {
    padding-left: 1.5rem;
    margin: 0.75rem 0 1.1rem;
}

.news-article__content li {
    margin-bottom: 0.4rem;
}

.news-article__content a {
    color: var(--accent-color);
    text-decoration: none;
}

.news-article__content a:hover {
    text-decoration: underline;
}

.news-article__content blockquote {
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid var(--accent-color);
    background-color: #f3f4f6;
    border-radius: 0 10px 10px 0;
    color: #4b5563;
    font-style: italic;
}

.news-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* News prev/next navigation */
.news-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.news-nav__item {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.4);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    color: var(--text-color);
}

.news-nav__item--disabled {
    background-color: #f9fafb;
    color: var(--text-light);
}

.news-nav__item:not(.news-nav__item--disabled):hover {
    background-color: #f9fafb;
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.news-nav__label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.news-nav__title {
    font-size: 0.95rem;
    font-weight: 500;
}

.news-nav__prev {
    text-align: left;
}

.news-nav__next {
    text-align: right;
}

/* Related news */
.news-related {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.news-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.news-related__card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.4);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
    border-color: var(--accent-color);
}

.news-related__thumb {
    position: relative;
    padding-top: 56%;
    background-color: #f3f4f6;
}

.news-related__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related__thumb-placeholder {
    position: absolute;
    inset: 0;
}

.news-related__info {
    padding: 0.9rem 1rem 1rem;
}

.news-related__title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 0.35rem;
}

.news-related__date {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .news-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-related__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Frontend badge style (category label) */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge-outline {
    border: 1px solid rgba(148, 163, 184, 0.9);
    color: #475569;
    background-color: #f9fafb;
}

.news-comments {
    margin: 2.5rem 0 0;
    max-width: 100%;
    padding: 2rem 2.25rem;
    background-color: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.comment-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.comment-form .form-group {
    margin-bottom: 0.75rem;
}

.comment-form-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.comment-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.comment-children {
    list-style: none;
    margin: 0.35rem 0 0.5rem 1.75rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--border-color);
}

.comment-reply-btn {
    margin-top: 0.25rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--accent-color);
    font-size: 0.82rem;
    cursor: pointer;
}

.comment-reply-btn:hover {
    text-decoration: underline;
}

.comment-reply-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background-color: #ecfdf3;
    border: 1px solid rgba(22, 163, 74, 0.35);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.comment-reply-context button {
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.8rem;
}

/* News comments styling enhancements */
.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.text-muted {
    color: var(--text-light);
    font-size: 0.95rem;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background-color: #f9fafb;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(24, 134, 48, 0.12);
    background-color: #ffffff;
}

.comment-form textarea {
    min-height: 110px;
    resize: vertical;
}

.comment-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-color);
}

.comment-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.comment-form .btn:hover {
    background-color: var(--hover-color);
    box-shadow: 0 4px 12px rgba(24, 134, 48, 0.25);
    transform: translateY(-1px);
}

.comment-form .btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-content {
    font-size: 0.95rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 768px) {
    .news-article,
    .news-comments {
        margin: 1.5rem 0 0;
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .news-article__cover {
        margin: 1.25rem 0 1.5rem;
    }

    .news-article__cover img {
        max-height: 320px;
        border-radius: 14px;
    }
}

.toc {
    position: sticky;
    top: 1rem;
}

.toc h2 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.toc a {
    display: block;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    color: var(--text-color);
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.toc a:hover {
    background: rgba(0,123,255,0.08);
    border-color: rgba(0,123,255,0.18);
    transform: translateX(2px);
    text-decoration: none;
}

.meta-line {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    .toc {
        position: static;
        top: auto;
        order: -1;
    }
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

/* 日期选择器 */
.date-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.date-btn {
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.date-btn:hover {
    background-color: var(--hover-color);
}

.date-display {
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 200px;
    text-align: center;
}

/* 筛选器 */
.filters {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    min-width: 150px;
}

.btn-primary, .btn-secondary {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* 比赛列表 */
.matches-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.loading, .no-matches {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* 动态加载列表页中 no-matches 默认隐藏，由 JS 控制显示 */
.matches-container .no-matches {
    display: none;
}

/* 详情页/单页引言（SEO 友好段落） */
.page-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.match-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.match-time {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.match-competition {
    color: var(--text-light);
    font-size: 0.9rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.team-name {
    font-weight: bold;
}

.vs {
    color: var(--text-light);
}

.match-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.channel-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.match-round {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 页脚 */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn,
    .mobile-search-btn {
        display: flex;
    }
    
    .desktop-search-box {
        display: none;
    }
    
    .nav-brand {
        flex: 1;
        margin: 0 auto;
        padding: 0 50px;
        text-align: center;
        min-width: 0;
        overflow: hidden;
    }
    
    .nav-brand a {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 1.2;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #fff;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown > a {
        position: relative;
        z-index: 10;
        background-color: var(--primary-color);
    }
    
    .dropdown-menu {
        position: relative;
        display: none;
        width: 100%;
        z-index: 1;
        box-shadow: none;
        background-color: var(--primary-color);
        margin-top: 0;
        padding: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .dropdown-menu li {
        width: 100%;
        flex: none;
        display: block;
        text-align: center;
    }
    
    .dropdown-menu li.menu-category {
        width: 100%;
        display: block;
        text-align: center;
        min-width: unset;
        max-width: none;
        border-right: none;
        padding: 0;
    }
    
    .dropdown-menu .teams-menu-list,
    .dropdown-menu .teams-menu-list li {
        text-align: center;
    }
    
    .dropdown-menu .teams-menu-list--two-columns {
        column-count: 1;
    }
    
    .dropdown-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        color: var(--white);
        border-bottom: 1px solid rgba(255,255,255,0.12);
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }
    
    .dropdown-menu li.menu-category a {
        padding: 0.75rem 1rem;
        font-weight: bold;
        font-size: 0.95rem;
        color: var(--white);
        border-bottom: 1px solid rgba(255,255,255,0.15);
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.1);
        color: var(--white);
    }
    
    .dropdown > a .arrow {
        transition: transform 0.3s;
    }
    
    .dropdown.active > a .arrow {
        transform: rotate(180deg);
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .date-selector {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .date-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    .date-display {
        width: 100%;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .match-channels {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .date-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .match-item {
        padding: 1rem;
    }
    
    .match-time {
        font-size: 1rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
}

/* Touch-friendly buttons on mobile */
@media (hover: none) and (pointer: coarse) {
    .date-btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 参考设计样式 - 日期选择器容器 */
.date-select-container {
    margin: 2rem 0 0 0;
    padding: 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.date-select-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.date-select {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    justify-content: space-between;
}

.date-select li {
    flex: 1;
    border-right: 1px solid #e5e7eb;
    position: relative;
    min-width: 0;
    max-width: 100%;
}

.date-select li:last-child {
    border-right: none;
}

.date-select li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--white);
    width: 100%;
    min-height: 70px;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.date-select li a:hover {
    background-color: #f9fafb;
}

.date-select li.active a {
    color: var(--text-color);
    font-weight: 600;
}

.date-select li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px 2px 0 0;
}

.date-select li a b {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    line-height: 1.2;
}

.date-select li a span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.2;
}

/* 日期横幅 */
.date-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* 参考设计样式 - 介绍区域 */
.intro {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro .h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.intro p:last-child {
    margin-bottom: 0;
}

.intro a {
    color: var(--accent-color);
    text-decoration: none;
}

.intro a:hover {
    text-decoration: underline;
}

.intro strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* 参考设计样式 - 比赛组 */
.fixture-group {
    margin: 2rem 0;
}

.fixture-date {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
    letter-spacing: 0.01em;
}

.fixture {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.fixture:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.fixture__inner {
    flex: 1;
    min-width: 0;
}

@media (min-width: 769px) {
    .fixture__streams {
        flex-direction: row;
        min-width: 220px;
        max-width: 280px;
    }
}

.fixture__time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    min-width: 65px;
    text-align: center;
    line-height: 1.4;
}

.fixture__teams {
    flex: 1;
    font-size: 1.05rem;
    color: var(--team-name-color);
    font-weight: 500;
    line-height: 1.5;
}

.fixture__team-name {
    color: var(--team-name-color);
    font-weight: 500;
}

.fixture__vs {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-weight: 400;
}

.fixture__competition {
    font-size: 0.875rem;
    color: var(--competition-color);
    margin-top: 0.35rem;
    font-weight: 400;
}

.fixture__channels {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.fixture__channel {
    padding: 0.35rem 0.85rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.fixture__channel:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.fixture__streams {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 200px;
}

.fixture__streams-btn {
    flex-shrink: 0;
}

.fixture__live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 100%;
}

.fixture__live-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.fixture__live-btn:active {
    transform: translateY(0);
}

.fixture__live-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.fixture__round {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* 参考设计样式 - 特色区块 */
.feature-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-block p:last-child {
    margin-bottom: 0;
}

.feature-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.feature-block a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .date-select-container {
        margin: 1rem 0 0 0;
    }
    
    .date-select {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .date-select li {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .date-select li a {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        min-height: 60px;
    }
    
    .date-select li a b {
        font-size: 0.75rem;
    }
    
    .date-select li a span {
        font-size: 0.7rem;
    }
    
    .date-banner {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .fixture {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .fixture__time {
        align-self: flex-start;
        min-width: auto;
    }
    
    .fixture__streams {
        width: 100%;
        margin-top: 0.5rem;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .fixture__teams {
        font-size: 1rem;
    }
    
    .fixture__competition {
        font-size: 0.8rem;
    }
    
    .intro {
        padding: 1.5rem;
    }
    
    .intro .h1 {
        font-size: 1.5rem;
    }
    
    .fixture {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .fixture__time {
        align-self: flex-start;
        min-width: auto;
    }
    
    .fixture__live-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .fixture__teams {
        font-size: 1rem;
    }
    
    .fixture__competition {
        font-size: 0.8rem;
    }
    
    .fixture__channels {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}