/* 基础样式 */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

.container a{
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 五彩斑斓的黑效果 */
header {
    background: linear-gradient(135deg, 
        rgba(18, 18, 18, 0.9) 0%, 
        rgba(30, 30, 30, 0.9) 20%, 
        rgba(18, 18, 18, 0.9) 40%,
        rgba(40, 40, 40, 0.9) 60%,
        rgba(18, 18, 18, 0.9) 80%,
        rgba(30, 30, 30, 0.9) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 30px rgba(0, 255, 255, 0.3),
                0 0 40px rgba(255, 0, 255, 0.3);
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        #ff0000, #ff7300, #fffb00, #48ff00, 
        #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    opacity: 0.1;
    z-index: -1;
    animation: glowing 20s linear infinite;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

h1 {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                 0 0 10px rgba(255, 255, 255, 0.3);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.vip-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.vip-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.vip-badge::before {
    content: "★";
    margin-right: 5px;
    font-size: 16px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

nav a.active::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, #ff0000, #ffff00);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, red, yellow, green, blue, purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

.sub-nav {
    background-color: rgba(40, 40, 40, 0.9);
    padding: 10px 0;
    margin-top: -1px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.sub-nav ul {
    display: inline-flex;
    gap: 20px;
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.sub-nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.sub-nav a.active {
    color: #4fc3f7;
    font-weight: bold;
}

.sub-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4fc3f7, #1e90ff);
    animation: navUnderline 0.3s ease forwards;
}

@keyframes navUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.sub-nav a:hover {
    color: #fff;
}

/* 新闻内容样式 */
.featured-news, .news-list {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

article {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h2, h3 {
    color: #fff;
}

.meta {
    color: #aaa;
    font-size: 0.9em;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #4fc3f7;
    text-decoration: none;
}

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

/* 页脚样式 */
/* 热门赛事板块 */
.hot-matches {
    margin-bottom: 40px;
}

.hot-matches h2 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 24px;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.match-card {
    background-color: #222;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.match-card:hover {
    transform: translateY(-5px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.match-time {
    color: #aaa;
    font-size: 14px;
}

.match-status {
    font-size: 14px;
    font-weight: bold;
}

.match-status.live {
    color: #ff6b6b;
}

.match-status.upcoming {
    color: #4fc3f7;
}

.match-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.team-name {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.team-score {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 18px;
}

.vs-separator {
    color: #aaa;
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
}

footer {
    background-color: #121212;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* 近期比赛分类导航 */
.match-categories {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    white-space: nowrap;
}

.category-btn {
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.category-btn.active {
    background-color: #4fc3f7;
    color: #121212;
}

/* 近期比赛样式 */
.recent-matches {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.matches-list {
    margin-top: 20px;
}

/* Web端样式 */
@media (min-width: 769px) {
    .match-row {
        display: grid;
        grid-template-columns: 140px 120px 1fr 120px;
        align-items: center;
        padding: 12px 15px;
        margin-bottom: 10px;
        background-color: rgba(40, 40, 40, 0.5);
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        gap: 15px;
    }
    
    .match-time {
        color: #aaa;
        font-size: 14px;
    }
    
    .match-name {
        color: #4fc3f7;
        text-decoration: none;
    }
    
    .match-teams {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .match-status {
        text-align: right;
    }
}

/* 移动端样式 */
@media (max-width: 768px) {
    .match-row {
        display: flex;
        flex-direction: column;
        padding: 12px 15px;
        margin-bottom: 10px;
        background-color: rgba(40, 40, 40, 0.5);
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        gap: 8px;
    }
    
    .match-time,
    .match-name,
    .match-teams,
    .match-status {
        width: 100%;
    }
    
    .match-status {
        text-align: left;
    }
    
    .match-categories {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
    
    .category-btn {
        font-size: 12px;
        padding: 3px 10px;
    }
}

.match-row:hover {
    background-color: rgba(50, 50, 50, 0.7);
}

.match-time {
    color: #aaa;
    font-size: 14px;
}

.match-name {
    color: #4fc3f7;
    text-decoration: none;
}

.match-name:hover {
    text-decoration: underline;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.match-team-left {
    justify-content: flex-end;
}

.match-team-right {
    justify-content: flex-start;
}

.match-team-logo {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.match-team-name {
    font-size: 14px;
    margin: 0 10px;
}

.match-team-score {
    font-weight: bold;
    color: #ff6b6b;
    min-width: 20px;
    text-align: center;
}

.match-vs {
    color: #aaa;
    margin: 0 10px;
}

.match-status {
    font-size: 14px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    text-align: right;
}

.match-status.live {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

.match-status.upcoming {
    color: #4fc3f7;
    background-color: rgba(79, 195, 247, 0.1);
}

.match-status {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 80px;
    margin: 0 auto;
}

.match-status.live {
    color: #ff0000;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}

.match-status.upcoming {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

.match-status.ended {
    color: #9E9E9E;
    background-color: rgba(158, 158, 158, 0.1);
    border: 1px solid rgba(158, 158, 158, 0.3);
    box-shadow: 0 0 8px rgba(158, 158, 158, 0.2);
}

/* 新闻详情页样式 */
.news-detail {
    background-color: rgba(30, 30, 30, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.news-image {
    /* margin: 20px 0; */
    text-align: center;
}

.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.image-caption {
    color: #aaa;
    font-size: 0.9em;
    margin-top: 10px;
}

.news-content {
    line-height: 1.8;
    margin: 30px 0;
}

.news-content p {
    margin-bottom: 15px;
}

.news-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-tags a {
    color: #4fc3f7;
    margin-right: 10px;
    text-decoration: none;
}

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

.news-navigation {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.news-navigation div {
    flex: 1;
}

.prev-article {
    text-align: left;
    padding-right: 15px;
}

.next-article {
    text-align: right;
    padding-left: 15px;
}

.news-navigation a {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s;
}

.news-navigation a:hover {
    color: #1e90ff;
    text-decoration: underline;
}

/* 详情页布局 */
.detail-layout {
    display: flex;
    gap: 30px;
}

.news-detail {
    flex: 2;
}

.detail-sidebar {
    flex: 1;
}

.sidebar-block {
    margin-bottom: 30px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.sidebar-block h3 {
    color: #fff;
    margin-bottom: 5px;
    padding-bottom: 5px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block li {
    /* margin-bottom: 10px; */
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-block a {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-block a:hover {
    color: #1e90ff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .detail-layout {
        flex-direction: column;
    }
    
    .detail-sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .news-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .prev-article,
    .next-article {
        text-align: center;
        padding: 0;
    }
}

/* 移动端菜单样式 */
.menu-toggle {
    padding: 10px;
    margin-right: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0;
        transition: all 0.3s ease;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .container {
        width: 95%;
    }

    .news-detail {
        padding: 20px;
    }

    /* 防止滚动当菜单打开时 */
    body.menu-open {
        overflow: hidden;
    }
}

/* 近期比赛标题样式 */
.recent-matches h2 {
    color: #1e90ff !important;
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(30, 144, 255, 0.7);
}

/* 体育资讯模块 */
.sports-news {
    margin: 40px 0;
}

/* 热门集锦模块 */
.hot-highlights {
    margin: 20px 0;
    padding: 5px 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hot-highlights h2 {
    color: #9c27b0;
    margin-bottom: 10px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(156, 39, 176, 0.5);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.highlight-item {
    background-color: rgba(40, 40, 40, 0.5);
    padding: 2px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.highlight-item:hover {
    background-color: rgba(50, 50, 50, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}



.highlight-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    flex: 1;
}

.highlight-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .highlights-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* 热门录像模块样式 */
.hot-videos {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hot-videos h2 {
    color: #ffeb3b;
    margin-bottom: 10px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(255, 235, 59, 0.5);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.video-item {
    background-color: rgba(40, 40, 40, 0.5);
    padding: 2px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.video-item:hover {
    background-color: rgba(50, 50, 50, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.video-item::before {
    content: "▶";
    color: #1e90ff;
    margin-right: 10px;
    font-size: 12px;
}

.video-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    flex: 1;
}

.video-link:hover {
    color: #fff;
    text-decoration: underline;
}

.sports-news h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

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

.news-item {
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    /* margin-bottom: 8px; */
}

.news-title {
    /* padding: 0 10px 10px; */
    color: #fff;
    font-size: 16px;
    text-align: center;
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    max-width: 100%; /* 限制最大宽度 */
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .matches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .highlight-item,
    .video-item {
        padding: 10px 12px;
    }

    .link-tag {
        padding: 6px 12px;
        font-size: 13px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .match-card h3,
    .news-title {
        font-size: 16px;
    }

    .featured-news, 
    .news-list,
    .recent-matches,
    .hot-highlights,
    .hot-videos,
    .friend-links {
        margin: 30px 0;
        padding: 15px;
    }
}

/* 直播源区域样式 */
.live-sources {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.7));
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.live-sources h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 22px;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

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

.source-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    background: linear-gradient(to right, rgba(40, 40, 40, 0.7), rgba(60, 60, 60, 0.6));
    color: #4fc3f7;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(79, 195, 247, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.source-tag:hover {
    background: linear-gradient(to right, rgba(50, 50, 50, 0.8), rgba(70, 70, 70, 0.7));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(79, 195, 247, 0.4);
}

@media (max-width: 768px) {
    .live-sources {
        padding: 15px;
    }
    
    .source-tags {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .source-tag {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* 友情链接模块样式 */
.friend-links {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.friend-links h2 {
    color: #ff9800;
    margin-bottom: 10px;
    font-size: 24px;
    text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.link-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(40, 40, 40, 0.5);
    color: #4fc3f7;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.link-tag:hover {
    background-color: rgba(50, 50, 50, 0.7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .link-tags {
        justify-content: center;
    }
}

/* 日期分类直播模块 */
.daily-matches {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.daily-matches h2 {
    color: #4fc3f7;
    margin-bottom: 20px;
    font-size: 22px;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.5);
}

.match-card {
    background-color: rgba(40, 40, 40, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.match-time {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.match-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.team-name {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.team-score {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 18px;
}

.vs {
    color: #aaa;
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
}

.match-status {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
}

.match-status.live {
    color: #ff0000;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.match-status.upcoming {
    color: #4fc3f7;
    background-color: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #aaa;
}

.breadcrumb a {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #666;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4fc3f7, #1e90ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1e90ff, #4fc3f7);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* 集锦模块样式 */
.highlights-container {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.highlight-section {
    flex: 1;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.highlight-section h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.highlight-section h2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.basketball h2::before {
    background-image: url('images/basketball-icon.png');
}

.football h2::before {
    background-image: url('images/football-icon.png');
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-item {
    /* margin-bottom: 15px; */
    display: flex;
    align-items: center;
}

.highlight-lq-item::before {
    content: '🏀';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.highlight-zq-item::before {
    content: '⚽';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.basketball .highlight-item::before {
    background-image: url('images/lakers.png');
    background-position: center;
}

.football .highlight-item::before {
    background-image: url('images/manutd.png');
    background-position: center;
}

/* 添加悬停动画效果 */
.highlight-item:hover::before {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.highlight-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .highlights-container {
        flex-direction: column;
    }
}
.new-item::before {
    content: "🗒";
    color: #1e90ff;
    margin-right: 10px;
    font-size: 12px;
}
.new-item {
    background-color: rgba(40, 40, 40, 0.5);
    padding: 2px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}