* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background: #0b0f1a;
      color: #f0f4ff;
      line-height: 1.5;
      padding: 0 16px 40px;
    }

    /* 主容器 — 最大宽度 1280px 居中 */
    .app {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ===== 顶部导航 ===== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      flex-wrap: wrap;
      gap: 12px 10px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      background: linear-gradient(145deg, #ff3b3b, #d10000);
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 8px 20px rgba(255, 50, 50, 0.3);
    }

    .logo-text {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: linear-gradient(to right, #ffffff, #b0c7ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo-text span {
      font-weight: 300;
      color: #8a9bff;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 15px;
      font-weight: 500;
    }

    .nav-links a {
      color: #b5c7f0;
      text-decoration: none;
      transition: 0.2s;
      padding: 6px 4px;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #ffffff;
      border-bottom-color: #ff4d4d;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .search-box {
      background: #1a1f2e;
      border-radius: 40px;
      padding: 8px 16px;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #2c3347;
    }

    .search-box i {
      color: #7a8bb0;
      font-size: 14px;
    }

    .search-box input {
      background: transparent;
      border: none;
      outline: none;
      color: #eef4ff;
      font-size: 14px;
      width: 130px;
    }

    .search-box input::placeholder {
      color: #5b6b8e;
    }

    .user-badge {
      background: #1f2640;
      border-radius: 30px;
      padding: 6px 14px 6px 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      border: 1px solid #323d5a;
    }

    .user-badge i {
      color: #ffb347;
    }

    /* ===== 直播分类快速导航 ===== */
    .category-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin: 24px 0 28px;
      padding: 8px 0;
      border-bottom: 1px solid #1f253b;
    }

    .category-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #151b2b;
      padding: 8px 20px 8px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      color: #c8d6f5;
      border: 1px solid #293049;
      transition: 0.2s;
      cursor: default;
    }

    .category-item i {
      color: #ff6b6b;
      font-size: 16px;
    }

    .category-item.active {
      background: #e53e3e;
      border-color: #e53e3e;
      color: white;
      box-shadow: 0 4px 14px rgba(229, 62, 62, 0.35);
    }

    .category-item.active i {
      color: white;
    }

    .category-item .badge {
      background: #2f3a5a;
      border-radius: 30px;
      padding: 0px 10px;
      font-size: 11px;
      font-weight: 600;
      color: #a8bbf0;
    }

    .category-item.active .badge {
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    /* ===== 主直播区域：热门直播 ===== */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin: 32px 0 18px;
    }

    .section-header h2 {
      font-weight: 600;
      font-size: 22px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-header h2 i {
      color: #ff4d4d;
      font-size: 20px;
    }

    .section-header a {
      color: #7f93c9;
      font-size: 14px;
      text-decoration: none;
      border-bottom: 1px dashed #3a4565;
    }

    .live-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .live-card {
      background: #121826;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #20273f;
      transition: 0.2s ease;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }

    .live-card:hover {
      transform: translateY(-4px);
      border-color: #3b4770;
      box-shadow: 0 20px 36px rgba(0, 0, 0, 0.8);
    }

    .card-media {
      position: relative;
      background: #1d253b;
      height: 170px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .card-media .league-tag {
      position: absolute;
      top: 12px;
      left: 14px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(6px);
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.4px;
      color: #d3e0ff;
      border: 1px solid #3c4b74;
    }

    .card-media .live-badge {
      position: absolute;
      top: 12px;
      right: 14px;
      background: #e53e3e;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 0 20px rgba(229, 62, 62, 0.5);
      animation: pulse-badge 1.8s infinite;
    }

    @keyframes pulse-badge {
      0% { opacity: 1; }
      50% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    .card-media .live-badge i {
      font-size: 10px;
    }

    .team-vs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 0 10px;
    }

    .team {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .team .emoji-badge {
      width: 52px;
      height: 52px;
      background: #262f4a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: inset 0 -2px 4px rgba(0,0,0,0.4);
    }

    .team .name {
      font-size: 13px;
      font-weight: 500;
      color: #bfd0f5;
    }

    .vs-text {
      background: #1f2842;
      padding: 4px 10px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 12px;
      color: #7e93cc;
    }

    .card-body {
      padding: 18px 16px 20px;
    }

    .match-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2px;
    }

    .match-info .score {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 2px;
      background: #0d1220;
      padding: 0 14px;
      border-radius: 20px;
      color: #ffffff;
    }

    .match-info .time {
      background: #1b233b;
      padding: 5px 16px;
      border-radius: 40px;
      font-size: 13px;
      color: #9eb1e0;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .match-info .time i {
      font-size: 12px;
      color: #6c81b3;
    }

    .match-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 16px;
      font-size: 13px;
      color: #95a9db;
      background: #0f1626;
      padding: 8px 12px;
      border-radius: 40px;
    }

    .match-stats span i {
      margin-right: 4px;
      color: #6275a3;
    }

    .btn-watch {
      display: block;
      width: 100%;
      margin-top: 18px;
      background: #2d3655;
      border: none;
      border-radius: 40px;
      padding: 12px 0;
      font-weight: 600;
      color: #c8d9ff;
      font-size: 15px;
      transition: 0.2s;
      cursor: default;
      text-align: center;
      border: 1px solid #3b4670;
    }

    .btn-watch i {
      margin-right: 8px;
    }

    .btn-watch:hover {
      background: #e53e3e;
      color: white;
      border-color: #e53e3e;
    }

    /* ===== 新闻 / 比分滚动 ===== */
    .news-ticker {
      background: #11172b;
      border-radius: 60px;
      padding: 12px 24px;
      margin: 40px 0 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid #27304b;
      flex-wrap: wrap;
    }

    .ticker-label {
      background: #e53e3e;
      padding: 2px 18px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .ticker-text {
      display: flex;
      align-items: center;
      gap: 24px;
      overflow-x: auto;
      white-space: nowrap;
      flex: 1;
      padding: 6px 0;
      color: #b5cbfa;
      font-size: 14px;
      scrollbar-width: thin;
      scrollbar-color: #2f3d62 transparent;
    }

    .ticker-text::-webkit-scrollbar {
      height: 3px;
    }
    .ticker-text::-webkit-scrollbar-thumb {
      background: #3e4e79;
      border-radius: 10px;
    }

    .ticker-text span {
      margin-right: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .ticker-text i {
      color: #ffb347;
    }

    /* ===== 更多赛程 ===== */
    .schedule-preview {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 26px;
      margin-top: 10px;
    }
	a {
		text-decoration: none;
	}
    .schedule-item {
      background: #121826;
      padding: 14px 18px;
      border-radius: 20px;
      border: 1px solid #212b45;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.15s;
    }

    .schedule-item:hover {
      background: #1a213b;
      border-color: #3d4d78;
    }

    .schedule-item .teams {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .schedule-item .teams .team-name {
      font-weight: 500;
      font-size: 14px;
    }

    .schedule-item .teams .team-name i {
      margin-right: 8px;
      color: #ff6b6b;
    }

    .schedule-item .time-badge {
      background: #1f2846;
      padding: 4px 16px;
      border-radius: 40px;
      font-size: 13px;
      color: #a5bbf0;
    }

    /* ===== 底部 ===== */
    .footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #1e253e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #62759e;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}

.footer-links a {
    color: #7e92c2;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #d0e0ff;
}

@media (max-width: 640px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer-links {
        gap: 8px 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

/* ===== 响应式微调 ===== */
@media (max-width: 700px) {
  .navbar {
	flex-direction: column;
	align-items: stretch;
  }
  .nav-links {
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 18px;
  }
  .nav-right {
	justify-content: center;
  }
  .search-box input {
	width: 100px;
  }
  .category-strip {
	justify-content: center;
  }
  .section-header {
	flex-wrap: wrap;
	gap: 6px;
  }
  .live-grid {
	grid-template-columns: 1fr;
  }
  .news-ticker {
	border-radius: 30px;
	padding: 12px 16px;
  }
  .ticker-text {
	white-space: normal;
	flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .logo-text {
	font-size: 20px;
  }
  .team .emoji-badge {
	width: 42px;
	height: 42px;
	font-size: 22px;
  }
  .match-info .score {
	font-size: 24px;
  }
}

/* 小点缀 */
.glow-text {
  color: #f0f4ff;
}
.text-muted {
  color: #6b7fac;
}

/* 集锦回放网格 */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.highlight-card {
    background: #121826;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #20273f;
    transition: 0.3s ease;
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: #3b4770;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.highlight-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0d1220;
}

.highlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.highlight-card:hover .highlight-thumb img {
    transform: scale(1.05);
}

.highlight-thumb .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.highlight-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(229, 62, 62, 0.3);
}

.highlight-card:hover .play-btn {
    opacity: 1;
}

.highlight-info {
    padding: 14px 16px 16px;
}

.highlight-info .highlight-tag {
    display: inline-block;
    background: #1f2846;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #a5bbf0;
    margin-bottom: 8px;
}

.highlight-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: #e8efff;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlight-info .highlight-views {
    font-size: 13px;
    color: #6b7fac;
}

.highlight-info .highlight-views i {
    margin-right: 4px;
}

/* 响应式 */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .highlight-thumb .play-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .highlight-info h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .highlight-info {
        padding: 10px 12px 12px;
    }
    
    .highlight-info h4 {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* 集锦回放网格 */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.highlight-card {
    background: #121826;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #20273f;
    transition: 0.3s ease;
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: #3b4770;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.highlight-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0d1220;
}

.highlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.highlight-card:hover .highlight-thumb img {
    transform: scale(1.05);
}

.highlight-thumb .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.highlight-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(229, 62, 62, 0.3);
}

.highlight-card:hover .play-btn {
    opacity: 1;
}

.highlight-info {
    padding: 14px 16px 16px;
}

.highlight-info .highlight-tag {
    display: inline-block;
    background: #1f2846;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #a5bbf0;
    margin-bottom: 8px;
}

.highlight-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: #e8efff;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlight-info .highlight-views {
    font-size: 13px;
    color: #6b7fac;
}

.highlight-info .highlight-views i {
    margin-right: 4px;
}

/* 响应式 */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .highlight-thumb .play-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .highlight-info h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .highlight-info {
        padding: 10px 12px 12px;
    }
    
    .highlight-info h4 {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* ===== 面包屑 ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 8px;
    font-size: 18px;
    color: #6b7fac;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #8a9bc9;
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb a.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb .breadcrumb-sep {
    color: #3a4565;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.breadcrumb .breadcrumb-sep i {
    font-size: 10px;
}

/* 移动端适配 */
@media (max-width: 640px) {
    .breadcrumb {
        font-size: 16px;
        padding: 10px 0 6px;
        gap: 6px;
    }

    .breadcrumb a {
        font-size: 16px;
    }

    .breadcrumb .breadcrumb-sep i {
        font-size: 9px;
    }
}

/* ===== 详情页 ===== */
.detail-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 40px;
}

/* 面包屑（已有） */
.detail-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 12px;
    font-size: 14px;
    color: #6b7fac;
    flex-wrap: wrap;
}

.detail-page .breadcrumb a {
    color: #8a9bc9;
    text-decoration: none;
    transition: 0.2s;
}

.detail-page .breadcrumb a:hover {
    color: #ffffff;
}

.detail-page .breadcrumb .breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.detail-page .breadcrumb .breadcrumb-sep {
    color: #3a4565;
    font-size: 12px;
}

/* 详情容器 */
.detail-container {
    background: #121826;
    border-radius: 24px;
    padding: 32px 40px 40px;
    border: 1px solid #20273f;
}

/* 标题 */
.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #f0f4ff;
    line-height: 1.3;
    margin-bottom: 16px;
	
}

/* 元信息 */
.detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #6b7fac;
    padding-bottom: 20px;
    border-bottom: 1px solid #1f253b;
    flex-wrap: wrap;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-meta span i {
    font-size: 14px;
}

.detail-tag {
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.detail-tag.live {
    background: #e53e3e;
    color: #ffffff;
}

.detail-tag.replay {
    background: #2d5a8a;
    color: #ffffff;
}

.detail-tag.news {
    background: #2d7a5a;
    color: #ffffff;
}

/* 封面图 */
.detail-cover {
    position: relative;
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0d1220;
}

.detail-cover img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.detail-cover .cover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 40px rgba(229, 62, 62, 0.4);
}

.detail-cover .cover-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e53e3e;
}

/* 正文 */
.detail-body {
    padding: 20px 0 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #d0dff5;
}

.detail-body p {
    margin-bottom: 18px;
}

.detail-body blockquote {
    background: #0f1626;
    border-left: 4px solid #e53e3e;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-style: italic;
    color: #a5bbf0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-body blockquote i {
    color: #e53e3e;
    font-size: 18px;
    margin-top: 2px;
}

/* 相关推荐 */
.detail-related {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #1f253b;
}

.detail-related h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f0f4ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-related h3 i {
    color: #6b7fac;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #0f1626;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
    color: #e8efff;
    border: 1px solid transparent;
}

.related-item:hover {
    background: #1a213b;
    border-color: #2c3550;
    transform: translateX(4px);
}

.related-tag {
    flex-shrink: 0;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.related-tag:contains("集锦") {
    background: #e53e3e;
    color: #ffffff;
}

.related-tag:contains("回放") {
    background: #2d5a8a;
    color: #ffffff;
}

.related-tag:contains("资讯") {
    background: #2d7a5a;
    color: #ffffff;
}

/* 改用类名控制标签颜色 */
.related-tag.tag-live {
    background: #e53e3e;
    color: #ffffff;
}

.related-tag.tag-replay {
    background: #2d5a8a;
    color: #ffffff;
}

.related-tag.tag-news {
    background: #2d7a5a;
    color: #ffffff;
}

.related-title {
    flex: 1;
    font-size: 14px;
    color: #c8d6f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式 */
@media (max-width: 768px) {
    .detail-container {
        padding: 20px 20px 28px;
        border-radius: 16px;
    }

    .detail-title {
        font-size: 22px;
		
    }

    .detail-meta {
        gap: 12px;
        font-size: 13px;
    }

    .detail-cover .cover-play {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .detail-body {
        font-size: 15px;
    }

    .related-item {
        padding: 10px 14px;
        flex-wrap: wrap;
    }

    .related-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        width: 100%;
        order: 2;
    }

    .related-tag {
        font-size: 11px;
        padding: 1px 10px;
    }
}

@media (max-width: 480px) {
    .detail-container {
        padding: 16px 14px 20px;
    }

    .detail-title {
        font-size: 19px;
    }

    .detail-meta {
        gap: 8px 14px;
        font-size: 12px;
    }

    .detail-cover .cover-play {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .detail-body {
        font-size: 14px;
    }

    .detail-body blockquote {
        padding: 12px 16px;
        font-size: 14px;
    }

    .detail-related h3 {
        font-size: 16px;
    }
}

/* ===== 直播详情页 ===== */
.live-detail-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 40px;
}

/* 面包屑 */
.live-detail-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 12px;
    font-size: 16px;
    color: #6b7fac;
    flex-wrap: wrap;
}

.live-detail-page .breadcrumb a {
    color: #8a9bc9;
    text-decoration: none;
    transition: 0.2s;
}

.live-detail-page .breadcrumb a:hover {
    color: #ffffff;
}

.live-detail-page .breadcrumb .breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.live-detail-page .breadcrumb .breadcrumb-sep {
    color: #3a4565;
    font-size: 14px;
}

/* 详情容器 */
.live-detail-container {
    background: #121826;
    border-radius: 24px;
    padding: 32px 36px 40px;
    border: 1px solid #20273f;
}

/* ===== 对阵信息 ===== */
.live-match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #1f253b;
}

.live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.live-team .team-crest {
    width: 72px;
    height: 72px;
    background: #1d253b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2c3550;
    overflow: hidden;  /* 新增：防止图片溢出 */
    flex-shrink: 0;    /* 新增：防止被挤压 */
}

.live-team .team-crest img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 或 contain */
    display: block;
}

.live-team .team-name {
    font-size: 18px;
    font-weight: 600;
    color: #f0f4ff;
}

/* 比分区域 */
.live-score-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 20px;
}

.live-score {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    background: #0d1220;
    padding: 4px 24px;
    border-radius: 12px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e53e3e;
    font-weight: 600;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-league {
    font-size: 13px;
    color: #6b7fac;
}

.live-league i {
    margin-right: 4px;
}

/* ===== 数据统计 ===== */
.live-stats {
    padding: 20px 0 16px;
    border-bottom: 1px solid #1f253b;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    width: 60px;
    font-size: 13px;
    color: #6b7fac;
    flex-shrink: 0;
}

.stat-bar {
    flex: 1;
    display: flex;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    background: #0d1220;
}

.stat-bar-home {
    background: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    transition: width 0.3s;
    min-width: 30px;
}

.stat-bar-away {
    background: #2d5a8a;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    transition: width 0.3s;
    min-width: 30px;
}

/* ===== 视频区域 ===== */
.live-video-area {
    margin: 20px 0 24px;
}

.video-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d1220;
}

.video-player img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-badge-large {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e53e3e;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 30px rgba(229, 62, 62, 0.4);
}

.live-badge-large i {
    font-size: 12px;
    animation: pulse-dot 1.2s infinite;
}

.video-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 50px rgba(229, 62, 62, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #e53e3e;
}

/* ===== 比赛事件 ===== */
.live-events {
    padding: 20px 0 16px;
    border-bottom: 1px solid #1f253b;
}

.live-events h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f0f4ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-events h3 i {
    color: #6b7fac;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #0f1626;
    font-size: 14px;
}

.event-item.home {
    border-left: 3px solid #e53e3e;
}

.event-item.away {
    border-left: 3px solid #2d5a8a;
}

.event-time {
    color: #6b7fac;
    font-weight: 600;
    width: 44px;
    flex-shrink: 0;
}

.event-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.event-desc {
    flex: 1;
    color: #d0dff5;
}

.event-score {
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

/* ===== 阵容 ===== */
.live-lineup {
    padding-top: 20px;
}

.live-lineup h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f0f4ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-lineup h3 i {
    color: #6b7fac;
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lineup-home h4,
.lineup-away h4 {
    font-size: 15px;
    font-weight: 600;
    color: #a5bbf0;
    margin-bottom: 10px;
}

.lineup-players {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.lineup-players span {
    font-size: 14px;
    color: #c8d6f5;
    padding: 4px 10px;
    background: #0f1626;
    border-radius: 6px;
    border: 1px solid #1f2842;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .live-detail-container {
        padding: 20px 16px 24px;
    }

    .live-match-header {
        flex-direction: column;
        gap: 16px;
    }

    .live-team {
        flex-direction: row;
        gap: 12px;
    }

    .live-team .team-crest {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .live-team .team-name {
        font-size: 16px;
    }

    .live-score {
        font-size: 32px;
        padding: 4px 16px;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-label {
        width: 48px;
        font-size: 12px;
    }

    .stat-bar-home,
    .stat-bar-away {
        font-size: 11px;
        padding: 0 6px;
    }

    .video-play-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .live-badge-large {
        font-size: 12px;
        padding: 4px 12px;
    }

    .event-item {
        font-size: 13px;
        padding: 6px 10px;
        flex-wrap: wrap;
    }

    .event-time {
        width: 36px;
        font-size: 12px;
    }

    .event-score {
        font-size: 13px;
    }

    .lineup-players span {
        font-size: 13px;
        padding: 3px 8px;
    }
}



@media (max-width: 480px) {
    .live-detail-container {
        padding: 16px 12px 20px;
        border-radius: 16px;
    }

    .live-score {
        font-size: 28px;
        padding: 2px 14px;
    }

    .live-team .team-crest {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .live-team .team-name {
        font-size: 14px;
    }

    .live-status {
        font-size: 12px;
    }

    .live-league {
        font-size: 12px;
    }

    .stat-item {
        gap: 8px;
        margin-bottom: 6px;
    }

    .stat-label {
        width: 40px;
        font-size: 11px;
    }

    .stat-bar {
        height: 20px;
    }

    .stat-bar-home,
    .stat-bar-away {
        font-size: 10px;
        padding: 0 4px;
        min-width: 20px;
    }

    .video-play-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .event-item {
        font-size: 12px;
        padding: 4px 8px;
        gap: 8px;
    }
		
}

/* ===== 直播源选择 ===== */
.live-source-area {
    margin: 20px 0 24px;
    padding: 20px 24px 24px;
    background: #0f1626;
    border-radius: 16px;
    border: 1px solid #1f2842;
}

.source-title {
    font-size: 16px;
    font-weight: 600;
    color: #a5bbf0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.source-title i {
    color: #4ade80;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.source-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 12px 16px;
    background: #121826;
    border-radius: 12px;
    border: 1px solid #20273f;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    min-height: 100px;
}

.source-item:hover {
    transform: translateY(-4px);
    border-color: #3b4770;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.source-item .source-icon {
    font-size: 32px;
    line-height: 1;
}

.source-item .source-name {
    font-size: 14px;
    font-weight: 500;
    color: #e8efff;
}

.source-item .source-status {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* 各平台不同颜色 */
.source-item.cctv .source-status {
    background: #e53e3e;
    color: #ffffff;
}

.source-item.iqiyi .source-status {
    background: #1a8c4a;
    color: #ffffff;
}

.source-item.huya .source-status {
    background: #ff7a00;
    color: #ffffff;
}

.source-item.douyu .source-status {
    background: #4a7aff;
    color: #ffffff;
}

.source-item.bilibili .source-status {
    background: #00a1d6;
    color: #ffffff;
}

.source-item.more .source-status {
    background: #2c3550;
    color: #6b7fac;
}

/* 平台特殊悬停效果 */
.source-item.cctv:hover {
    border-color: #e53e3e;
    background: #1a0f0f;
}

.source-item.iqiyi:hover {
    border-color: #1a8c4a;
    background: #0f1a12;
}

.source-item.huya:hover {
    border-color: #ff7a00;
    background: #1a120a;
}

.source-item.douyu:hover {
    border-color: #4a7aff;
    background: #0f0f1a;
}

.source-item.bilibili:hover {
    border-color: #00a1d6;
    background: #0a121a;
}

.source-item.more:hover {
    border-color: #4a5a8a;
    background: #1a1f2e;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .live-source-area {
        padding: 16px 16px 20px;
    }

    .source-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }

    .source-item {
        padding: 16px 10px 14px;
        min-height: 80px;
    }

    .source-item .source-icon {
        font-size: 26px;
    }

    .source-item .source-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .source-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .source-item {
        padding: 14px 6px 12px;
        min-height: 70px;
        border-radius: 8px;
    }

    .source-item .source-icon {
        font-size: 22px;
    }

    .source-item .source-name {
        font-size: 12px;
    }

    .source-item .source-status {
        font-size: 10px;
        padding: 1px 8px;
    }

    .source-title {
        font-size: 14px;
    }
}

/* ===== 篮球小节切换 ===== */
.quarter-section {
    margin: 20px 0 16px;
    background: #0f1626;
    border-radius: 12px;
    border: 1px solid #1f2842;
    overflow: hidden;
}

/* 标签导航 */
.quarter-tabs {
    display: flex;
    background: #0a0f1a;
    border-bottom: 1px solid #1f2842;
}

.quarter-tab {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7fac;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    user-select: none;
}

.quarter-tab:hover {
    color: #a5bbf0;
    background: rgba(255, 255, 255, 0.03);
}

.quarter-tab.active {
    color: #ffffff;
    border-bottom-color: #e53e3e;
    background: rgba(229, 62, 62, 0.08);
}

/* 内容区域 */
.quarter-content {
    padding: 16px 20px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.quarter-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.quarter-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 事件列表 */
.quarter-event-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quarter-event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 14px;
    border-left: 3px solid transparent;
}

.quarter-event-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.quarter-event-item .event-time {
    color: #6b7fac;
    font-weight: 600;
    min-width: 44px;
    font-size: 13px;
}

.quarter-event-item .event-desc {
    flex: 1;
    color: #d0dff5;
}

.quarter-event-item .event-team {
    font-size: 12px;
    color: #6b7fac;
    min-width: 40px;
    text-align: right;
}

/* 主队事件（左侧） */
.quarter-event-item.home {
    border-left-color: #fbbf24;
}

/* 客队事件（右侧） */
.quarter-event-item.away {
    border-left-color: #4a9eff;
}

/* 响应式 */
@media (max-width: 640px) {
    .quarter-tab {
        font-size: 13px;
        padding: 10px 0;
    }

    .quarter-content {
        padding: 12px 14px 16px;
        max-height: 300px;
    }

    .quarter-event-item {
        font-size: 13px;
        padding: 5px 10px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .quarter-event-item .event-time {
        font-size: 12px;
        min-width: 36px;
    }

    .quarter-event-item .event-desc {
        font-size: 13px;
        flex: 1 1 100%;
        order: 2;
    }

    .quarter-event-item .event-team {
        font-size: 11px;
        min-width: 30px;
    }
}

/* 内容区域 */
.quarter-content {
    padding: 16px 20px 20px;
    max-height: 400px;
    overflow-y: auto;
}

/* ===== 自定义滚动条 ===== */
.quarter-content::-webkit-scrollbar {
    width: 6px;
}

.quarter-content::-webkit-scrollbar-track {
    background: #0a0f1a;
    border-radius: 4px;
}

.quarter-content::-webkit-scrollbar-thumb {
    background: #2c3550;
    border-radius: 4px;
}

.quarter-content::-webkit-scrollbar-thumb:hover {
    background: #3b4770;
}

/* Firefox 兼容 */
.quarter-content {
    scrollbar-width: thin;
    scrollbar-color: #2c3550 #0a0f1a;
}