/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ============================================
   体育赛事聚合站 - 全局样式
   深色主题 · 现代设计 · 流畅动效
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #07080c;
  --bg-secondary: #0d0f14;
  --bg-card: #12141a;
  --bg-card-hover: #181b22;
  --border: rgba(255, 255, 255, 0.06);
  --border-bright: rgba(255, 255, 255, 0.1);

  --text-primary: #f0f2f5;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.3);

  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.25);
  --accent-red: #ef4444;
  --accent-green: #22c55e;
  --accent-yellow: #eab308;
  --accent-purple: #a855f7;
  --accent-orange: #f97316;

  /* 联赛主题色 */
  --nba: #C9082A;
  --cba: #1D4E89;
  --football: #22c55e;
  --tennis: #eab308;
  --esports: #a855f7;
  --other: #64748b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.15);
  --shadow-glow-red: 0 0 30px rgba(201, 8, 42, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ============ 头部导航 ============ */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 12, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

/* 搜索框容器 */
.search-box-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1;
  max-width: 400px;
}

.search-input {
  flex: 1 1;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

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

.search-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
}

.search-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-blue), #6366f1);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 统计信息 */
.stats-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.stat-label {
  color: var(--text-secondary);
}

.stat-value {
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
}

.stat-value.live {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.stat-value.pending {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.stat-value.total {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.nav-tab {
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
}

.nav-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-tab.active {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.4);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  cursor: pointer;
}

.live-badge .dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ============ 容器 ============ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 24px;
}

/* ============ 英雄区域 ============ */
.hero {
  text-align: center;
  padding: 16px 24px 12px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.hero p {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============ 日期导航 ============ */
.date-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 12px;
  scrollbar-width: none;
}

.date-nav::-webkit-scrollbar { display: none; }

.date-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 68px;
}

.date-btn:hover {
  border-color: var(--border-bright);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.date-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.date-btn .day-name { font-size: 10px; opacity: 0.7; }
.date-btn .day-num { font-size: 16px; font-weight: 700; }

/* ============ 分类筛选 ============ */
.category-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.category-filter::-webkit-scrollbar { display: none; }

.category-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.category-btn:hover { border-color: var(--border-bright); color: var(--text-primary); }

.category-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

/* ============ 联赛分组 ============ */
.league-section {
  margin-bottom: 32px;
}

.league-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.league-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.league-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.league-count {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ============ 赛事卡片 ============ */
.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 24px;
}

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.25s;
}

.match-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}

.match-card:hover::before { opacity: 1; }

.match-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}

.match-time {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
  font-family: 'SF Mono', monospace;
}

.match-league-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 72px;
}

.match-live-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-radius: 6px;
  animation: pulse-red 2s infinite;
  white-space: nowrap;
}

.match-status {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border-radius: 6px;
  white-space: nowrap;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* ============ 直播源 ============ */
.stream-channels {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.channel-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
}

.channel-tag.clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  filter: brightness(1.2);
}

.team {
  flex: 1 1;
  text-align: center;
}

.team-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
  font-weight: 700;
}

.team-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  min-width: 40px;
  text-align: center;
}

.vs-divider {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

/* 篮球类卡片顶部色条 */
.match-card.basketball::before {
  background: linear-gradient(90deg, var(--nba), #ff6b6b);
}
.match-card.basketball .team-logo { background: rgba(201, 8, 42, 0.1); }

.match-card.football::before {
  background: linear-gradient(90deg, var(--football), #86efac);
}
.match-card.football .team-logo { background: rgba(34, 197, 94, 0.1); }

.match-card.esports::before {
  background: linear-gradient(90deg, var(--esports), #c084fc);
}
.match-card.esports .team-logo { background: rgba(168, 85, 247, 0.1); }

.match-card.tennis::before {
  background: linear-gradient(90deg, var(--tennis), #fde047);
}
.match-card.tennis .team-logo { background: rgba(234, 179, 8, 0.1); }

/* ============ 空状态 ============ */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.empty-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ 加载动画 ============ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, rgba(255,255,255,0.04) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-match {
  height: 120px;
  margin-bottom: 12px;
}

/* ============ 页脚 ============ */
.footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ============ 响应式 ============ */
@media (max-width: 768px) {
  .container { padding: 16px; }
  .header-inner { padding: 0 16px; }
  .nav-tabs { display: none; }
  .hero { padding: 32px 16px 24px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .match-grid { grid-template-columns: 1fr; }
  .match-card { padding: 16px; }
  .team-logo { width: 40px; height: 40px; font-size: 16px; }
  .team-score { font-size: 24px; }
}

/* ============ 响应式增强 ============ */
@media (max-width: 1024px) {
  .header-inner { max-width: 100%; }
  .container { max-width: 100%; }
}

/* 平板/手机 */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; height: 56px; }
  .logo span { display: none; }
  .stats-info { gap: 12px; }
  .stat-item .stat-label { display: none; }
  .container { padding: 12px 16px; }
  .hero { padding: 12px 0; }
  .hero h1 { font-size: 20px; }
  .category-filter { gap: 6px; overflow-x: auto; padding-bottom: 8px; }
  .category-btn { padding: 6px 12px; font-size: 12px; }
}

/* 手机小屏 */
@media (max-width: 480px) {
  .header-inner { height: 52px; }
  .search-box-container { display: none; }
  .stats-info { gap: 8px; }
  .stat-value { padding: 2px 6px; min-width: auto; font-size: 12px; }
}

/* 移动端表格适配 */
@media (max-width: 768px) {
  .table-header, .table-row {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }
}

/* 直播内页自适应 */
@media (max-width: 1024px) {
  .live-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .live-grid {
    grid-template-columns: 1fr !important;
  }
  .score-display {
    padding: 20px !important;
    gap: 24px !important;
  }
  .score-display .score-num {
    font-size: 28px !important;
  }
  .channel-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 8px !important;
    gap: 8px !important;
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 联赛页面自适应 */
@media (max-width: 768px) {
  .category-header h1 { font-size: 18px; }
}

/* ============ 首页表格布局 ============ */
.match-table-header {
  display: flex;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  gap: 12px;
}

.match-table-header .col-date-time-title {
  width: 130px;
  flex-shrink: 0;
  text-align: left;
}

.match-table-header .col-league-title {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  width: 120px;
  flex-shrink: 0;
.match-table-header .col-teams-title span:first-child {
  width: calc(50% - 15px);
  text-align: right;
}

.match-table-header .col-teams-title span:nth-child(2) {
  width: 30px;
  text-align: center;
}

.match-table-header .col-teams-title span:last-child {
  width: calc(50% - 15px);
  text-align: left;
}

.match-table-header .col-streams-title {
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

.match-table-body {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
}

.match-table-row {
  display: flex;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  transition: background 0.15s;
}

.match-table-row .col-date-time {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-table-row .col-date {
  flex-shrink: 0;
}

.match-table-row .col-time {
  flex-shrink: 0;
}

.match-table-row .col-league {
  width: 120px;
  flex-shrink: 0;
}

.match-table-row .col-teams {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-table-row .col-teams .team-name:first-child {
  width: calc(50% - 15px);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-table-row .col-teams .vs {
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.match-table-row .col-teams .team-name:last-child {
  width: calc(50% - 15px);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-table-row .col-streams {
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

.match-table-row:hover {
  background: rgba(79,156,249,0.07);
}

.match-table-row.odd {
  background: rgba(255,255,255,0.015);
}

.match-table-row:last-child {
  border-bottom: none;
}

.col-date { width: 65px; flex-shrink: 0; font-size: 14px; color: rgba(255,255,255,0.5); }
.col-time { width: 75px; flex-shrink: 0; font-size: 14px; font-weight: 600; color: #fff; }
.col-time.live { color: #ef4444; }
.col-league { width: 180px; flex-shrink: 0; overflow: hidden; }
.col-teams { width: 220px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 8px; overflow: hidden; }
.col-streams { flex: 1 1; }

.league-tag { font-size: 13px;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 85px;
  text-align: center;
}

.vs {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* 移动端适配 - 表格转卡片 */
@media (max-width: 768px) {
  .match-table-header { 
    display: flex !important;
    padding: 8px 12px;
    font-size: 11px;
    gap: 8px;
    background: rgba(255,255,255,0.03);
  }
  
  .match-table-header .col-date-time-title,
  .match-table-header .col-league-title { display: none; }
  
  .match-table-header .col-teams-title {
    flex: 1 1;
    display: flex;
    justify-content: center;
  }
  
  .match-table-header .col-streams-title {
    width: auto;
    text-align: center;
  }
  
  .match-table-row {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
    margin: 8px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .match-table-row.odd { background: rgba(255,255,255,0.03); }
  .match-table-row:hover { background: rgba(79,156,249,0.08); }
  
  /* 日期和时间同一行 */
  .match-table-row > span:first-child + span {
    display: inline-flex;
    gap: 12px;
    align-items: center;
  }
  
  .col-date, .col-time { display: inline-flex; font-size: 12px; }
  .col-time { font-weight: 600; color: #fff; }
  .col-time.live { color: #ef4444; }
  
  .col-league { width: 100%; }
  .col-teams { width: 100%; display: flex; align-items: center; gap: 8px; }
  .team-name { font-size: 15px; font-weight: 600; color: #fff; }
  .vs { font-size: 12px; color: rgba(255,255,255,0.4); }
  .col-streams { width: 100%; display: flex; flex-wrap: wrap; gap: 6px; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,0.08); }
}

/* ============ 直播内页响应式 ============ */
.live-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-gap: 24px;
  gap: 24px;
}

.live-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.live-card-header {
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.live-score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
}

.live-score-box .team { text-align: center; }
.live-score-box .score { font-size: 36px; font-weight: 800; color: #fff; }
.live-score-box .team-name { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.live-score-box .divider { font-size: 20px; color: rgba(255,255,255,0.3); }

.live-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #C9082A;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.live-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
  gap: 12px;
  padding: 16px;
}

.live.info-item {
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.live-info-item .label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.live-info-item .value { font-size: 13px; color: #fff; font-weight: 500; }

/* 平板适配 */
@media (max-width: 1024px) {
  .live-page-grid {
    grid-template-columns: 1fr;
  }
}

/* 手机适配 */
@media (max-width: 768px) {
  .live-score-box {
    padding: 20px;
    gap: 24px;
  }
  .live-score-box .score { font-size: 28px; }
  
  .live-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .channel-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .live-info-grid {
    grid-template-columns: 1fr;
  }
  .channel-list {
    grid-template-columns: 1fr;
  }
}

/* ============ 联赛页面响应式 ============ */
@media (max-width: 768px) {
  .category-list {
    padding: 12px 16px;
  }
}

/* ============ 通用响应式辅助 ============ */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

/* 确保内联样式也能响应式 */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
  
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============ 联赛页面响应式 ============ */
@media (max-width: 768px) {
  .category-page { padding: 12px 16px !important; }
  .category-title h1 { font-size: 18px !important; }
}

/* ============ 直播内页响应式增强 ============ */
@media (max-width: 768px) {
  .live-header { padding: 0 16px !important; height: 56px !important; }
  
  .live-page-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .live-page { padding: 12px 16px 32px !important; }
  .live-title h1 { font-size: 18px !important; }
  .live-score-box { padding: 20px !important; gap: 20px !important; }
  .live-score-box .score { font-size: 28px !important; }
  .live-card { margin-bottom: 16px; }
  .related-card { margin-top: 16px; }
  .today-card, .related-card { border-radius: 12px; margin: 0 12px 16px; }
  .today-header, .related-header { padding: 12px !important; font-size: 13px !important; }
  .today-row, .related-row { padding: 10px 12px !important; }
}

@media (max-width: 480px) {
  .live-title h1 { font-size: 16px !important; }
  .live-score-box { flex-direction: column; gap: 12px !important; }
  .live-info-section { padding: 12px !important; }
  .live-info-section .live-info-grid { grid-template-columns: 1fr !important; }
}

/* ============ 直播内页响应式 - 强制覆盖 ============ */
@media screen and (max-width: 1024px) {
  .live-page-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 768px) {
  /* 头部响应式 */
  .live-header > div {
    max-width: 100% !important;
    padding: 0 16px !important;
  }
  
  
  /* 页面容器响应式 */
  .live-page {
    padding: 12px 16px 32px !important;
  }
  
  /* 页面标题响应式 */
  .live-title h1 {
    font-size: 18px !important;
  }
  
  /* 左右网格转单栏 */
  .live-page-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* 所有卡片响应式 */
  .today-card,
  .related-card,
  .live-card {
    margin-bottom: 16px !important;
    border-radius: 12px !important;
  }
  
  /* 比分区域响应式 */
  .live-score-box {
    padding: 20px !important;
    gap: 20px !important;
  }
  .live-score-box .score {
    font-size: 28px !important;
  }
  
  /* 直播源按钮网格 */
  .channel-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 8px !important;
    gap: 8px !important;
  }
  
  /* 赛事信息网格 */
  .live-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 480px) {
  .live-title h1 {
    font-size: 16px !important;
  }
  .live-score-box {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .live-info-grid {
    grid-template-columns: 1fr !important;
  }
  .channel-list {
    grid-template-columns: 1fr !important;
  }
}

/* ============ 直播内页详细响应式 ============ */
.live-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.live-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1024px) {
  .live-page-grid {
    grid-template-columns: 1fr !important;
  }
  .live-sidebar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* 头部 */
  .live-header div {
    max-width: 100% !important;
    padding: 0 16px !important;
  }
  
  
  /* 主容器 */
  .live-page {
    padding: 12px 16px 32px !important;
  }
  
  /* 标题 */
  .live-title h1 {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }
  
  /* 左侧主内容 */
  .live-main {
    gap: 16px !important;
  }
  
  /* 比分 */
  .live-score-box {
    padding: 20px !important;
    gap: 20px !important;
  }
  .live-score-box > div {
    font-size: 28px !important;
  }
  .live-score-box .score {
    font-size: 28px !important;
  }
  
  /* 所有卡片 */
  .live-card,
  .today-card,
  .related-card {
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    overflow: hidden !important;
  }
  
  /* 赛事信息 */
  .live-info-section .live-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* 直播源按钮 */
  .channel-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 8px !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .live-title h1 {
    font-size: 16px !important;
  }
  .live-score-box {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .live-score-box .score {
    font-size: 24px !important;
  }
  .live-info-section .live-info-grid {
    grid-template-columns: 1fr !important;
  }
  .channel-list {
    grid-template-columns: 1fr !important;
  }
}
/* ============ 直播内页完整响应式 ============ */
.live-page {
  min-height: 100vh;
  background: #07080c;
  color: #f0f2f5;
}

.live-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,12,0.92);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.live-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============ 移动端隐藏搜索和日期选择器 ============ */
@media (max-width: 768px) {
  .header-search { display: none !important; }
  .date-selector { display: none !important; }
}

@media (min-width: 769px) {
  .header-search { display: block !important; }
  .date-selector { display: flex !important; }
}

/* ============ 直播内页完整样式 ============ */
.live-page {
  min-height: 100vh;
  background: #07080c;
  color: #f0f2f5;
}

.live-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,12,0.92);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.live-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.live-header .logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #4f9cf9, #6c63ff);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.live-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.live-header .breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.live-header .breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.live-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.live-title {
  margin-bottom: 20px;
}

.live-title h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.live-badge {
  color: #ef4444;
  margin-right: 8px;
}

.match-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.league-tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-gap: 24px;
  gap: 24px;
}

.live-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.live-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.score-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.score-team {
  text-align: center;
}

.score-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.team-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.score-divider {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
}

.channel-card, .info-card, .today-card, .related-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.card-header {
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.channel-list {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 14px;
  gap: 14px;
  padding: 16px;
}

.info-item {
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.info-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.today-card .today-header {
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 12px;
}

.today-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.today-row:hover {
  background: rgba(79,156,249,0.08);
}

.today-row.odd {
  background: rgba(255,255,255,0.015);
}

.related-card .related-header {
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.related-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.related-row:hover {
  background: rgba(79,156,249,0.08);
}

.related-row.odd {
  background: rgba(255,255,255,0.015);
}

.related-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.related-teams {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-teams .team-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: 1 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-teams .vs {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ============ 直播内页移动端响应式 ============ */
@media (max-width: 1024px) {
  .live-grid {
    grid-template-columns: 1fr;
  }
  .live-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .live-header .header-inner {
    padding: 0 16px;
    height: 56px;
  }
  
  .live-content {
    padding: 12px 16px 32px;
  }
  
  .live-title h1 {
    font-size: 18px;
  }
  
  .score-box {
    padding: 20px;
    gap: 20px;
  }
  .score-num {
    font-size: 28px;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .channel-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .live-title h1 {
    font-size: 16px;
  }
  .score-box {
    flex-direction: column;
    gap: 12px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .channel-list {
    grid-template-columns: 1fr;
  }
}

/* ============ 首页直播源样式 ============ */
.stream-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  overflow: visible;
}

.stream-tag-btn {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(59,130,246,0.12);
  color: #4f9cf9;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.stream-tag-btn.ad {
  background: #e11d48;
  color: #fff;
}

.stream-more {
  font-size: 12px;
  color: #888;
  align-self: center;
}

/* ============ 联赛页面移动端响应式 ============ */
@media (max-width: 768px) {
  .category-page {
    padding: 12px 16px 32px !important;
  }
  
  .category-title h1 {
    font-size: 18px !important;
  }
  
  .category-table-header {
    display: none !important;
  }
  
  .category-match-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 12px !important;
    gap: 8px !important;
    border-radius: 8px !important;
    margin: 8px 12px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-bottom: none !important;
  }
  
  .category-match-row.odd {
    background: rgba(255,255,255,0.015) !important;
  }
  
  .category-match-row .col-date {
    width: 100% !important;
    font-size: 12px !important;
    color: rgba(255,255,255,0.4) !important;
    order: 1;
  }
  
  .category-match-row .col-time {
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    order: 2;
  }
  
  .category-match-row .col-league {
    width: 100% !important;
    order: 3;
  }
  
  .category-match-row .col-teams {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    order: 4;
  }
  
  .category-match-row .col-teams span {
    font-size: 15px !important;
    max-width: none !important;
  }
  
  .category-match-row .col-streams {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    order: 5 !important;
    padding-top: 8px !important;
    border-top: 1px dashed rgba(255,255,255,0.08) !important;
  }
}

/* ============ 联赛页面样式 ============ */
.category-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.category-title {
  margin-bottom: 20px;
}

.category-title h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.category-table-header {
  display: flex;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  gap: 12px;
}

.col-date { font-size: 14px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.col-time { font-size: 14px; font-weight: 600; color: #fff; flex-shrink: 0; }
.col-time.live { color: #ef4444; }
.col-league { flex-shrink: 0; }
.col-teams { display: flex; align-items: center; justify-content: center; gap: 8px; overflow: hidden; }
.col-streams { flex: 1 1; }

.team-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 85px;
  text-align: center;
}

.vs {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.league-badge {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}

.category-match-row {
  display: flex;
  padding: 14px 16px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  text-decoration: none;
  color: inherit;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}

.category-match-row:hover {
  background: rgba(79,156,249,0.07);
}

.category-match-row.odd {
  background: rgba(255,255,255,0.015);
}

/* ============ 移动端直播源卡片样式 ============ */
@media (max-width: 768px) {
  .match-table-row {
    padding: 12px !important;
  }
  
  .col-streams {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding-top: 8px !important;
    border-top: 1px dashed rgba(255,255,255,0.08) !important;
  }
  
  .stream-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  
  .stream-tag-btn {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
}

/* ============ 首页表格布局 ============ */
.match-table-header {
  display: flex;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  gap: 12px;
}

.match-table-header .col-date-time-title {
  width: 130px;
  flex-shrink: 0;
  text-align: left;
}

.match-table-header .col-league-title,
.match-table-row .col-league {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-table-header .col-teams-title {
  flex: 1 1;
  display: flex;
  justify-content: center;
}

.match-table-header .col-teams-title span:first-child {
  width: calc(50% - 15px);
  text-align: right;
}

.match-table-header .col-teams-title span:nth-child(2) {
  width: 30px;
  text-align: center;
}

.match-table-header .col-teams-title span:last-child {
  width: calc(50% - 15px);
  text-align: left;
}

.match-table-header .col-streams-title {
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

.match-table-body {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
}

.match-table-row {
  display: flex;
  padding: 14px 16px;
  background: transparent;
  text-decoration: none;
  color: inherit;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}

.match-table-row:hover {
  background: rgba(79,156,249,0.07);
}

.match-table-row.odd {
  background: rgba(255,255,255,0.015);
}

.match-table-row:last-child {
  border-bottom: none;
}

.col-date { flex-shrink: 0; }
.col-time { flex-shrink: 0; }
.col-league { width: 120px; flex-shrink: 0; }
.col-teams { width: 220px; margin-right: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.col-streams { flex: 1 1; }

/* ============ 直播内页今日重点和对阵样式修复 ============ */
.today-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-top: 20px;
}

.today-header {
  padding: 12px 16px !important;
  background: rgba(255,255,255,0.025) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.5) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  display: flex !important;
  gap: 12px !important;
}

.today-row {
  display: flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  color: inherit !important;
  gap: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: background 0.15s !important;
}

.today-row:hover {
  background: rgba(79,156,249,0.08) !important;
}

.today-row.odd {
  background: rgba(255,255,255,0.015) !important;
}

.today-row .col-date {
  width: 50px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  flex-shrink: 0 !important;
}

.today-row .col-time {
  width: 70px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  flex-shrink: 0 !important;
}

.today-row .col-time.live {
  color: #ef4444 !important;
}

.today-row .col-teams {
  flex: 1 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.today-row .league-badge {
  font-size: 12px !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  flex-shrink: 0 !important;
}

.today-row .team-vs {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.today-row .col-streams {
  width: 70px !important;
  font-size: 14px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}

/* 相关赛事样式 */
.related-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.related-header {
  padding: 14px 16px !important;
  background: rgba(255,255,255,0.025) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.related-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  color: inherit !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: background 0.15s !important;
}

.related-row:hover {
  background: rgba(79,156,249,0.08) !important;
}

.related-row.odd {
  background: rgba(255,255,255,0.015) !important;
}

/* 直播内页logo网站名称 */
.live-header .logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.live-header .logo-icon {
  width: 34px !important;
  height: 34px !important;
  background: linear-gradient(135deg, #4f9cf9, #6c63ff) !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 17px !important;
}

/* 移动端首页和联赛页面对齐 */
@media (max-width: 768px) {
  .match-table-row {
    padding: 12px !important;
  }
  
  .match-table-row .col-date,
  .match-table-row .col-time,
  .match-table-row .col-league,
  .match-table-row .col-teams,
  .match-table-row .col-streams {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  .category-match-row {
    padding: 12px !important;
  }
  
  .category-match-row .col-date,
  .category-match-row .col-time,
  .category-match-row .col-league,
  .category-match-row .col-teams,
  .category-match-row .col-streams {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  /* 直播内页移动端响应式 */
  .live-page {
    padding: 12px 16px 32px !important;
  }
  
  .live-title h1 {
    font-size: 18px !important;
  }
  
  .live-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .live-main {
    gap: 16px !important;
  }
  
  .live-sidebar {
    display: none !important;
  }
  
  .score-box {
    padding: 20px !important;
    gap: 20px !important;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .channel-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 8px !important;
    gap: 8px !important;
  }
  
  .today-card {
    margin: 16px 0 !important;
  }
  
  .today-row {
    padding: 10px 12px !important;
    flex-wrap: wrap !important;
  }
  
  .today-row .col-date {
    width: 40px !important;
  }
  
  .today-row .col-teams {
    width: 100% !important;
    order: 3 !important;
  }
  
  .today-row .col-streams {
    width: 100% !important;
    order: 4 !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr !important;
  }
  
  .channel-list {
    grid-template-columns: 1fr !important;
  }
  
  .score-box {
    flex-direction: column !important;
  }
}

/* ============ 移动端左对齐强制 ============ */
@media (max-width: 768px) {
  /* 首页表格 */
  .match-table-row {
    align-items: flex-start !important;
  }
  
  .match-table-row > * {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  /* 直播源标签 */
  .stream-tags {
    justify-content: flex-start !important;
  }
  
  .stream-tag-btn {
    justify-content: flex-start !important;
  }
  
  /* 联赛页表格 */
  .category-match-row {
    align-items: flex-start !important;
  }
  
  .category-match-row > * {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  /* 今日重点 */
  .today-row {
    justify-content: flex-start !important;
  }
  
  .today-row > * {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* ============ 日期时间同一行 ============ */
.col-date-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .col-date-time {
    display: inline-flex !important;
    gap: 12px;
  }
  
  .col-date {
    display: inline-block !important;
    width: auto !important;
  }
  
  .col-time {
    display: inline-block !important;
    width: auto !important;
  }
}

/* ============ 日期时间同一行样式 ============ */
.col-date-time {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.col-date-time .col-date {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.col-date-time .col-time {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.col-date-time .col-time.live {
  color: #ef4444;
}

.col-date-time-title {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .col-date-time {
    display: inline-flex !important;
    gap: 10px;
  }
  
  .col-date-time .col-date {
    font-size: 12px;
  }
  
  .col-date-time .col-time {
    font-size: 13px;
  }
}

/* 联赛标签可点击 */
.league-tag {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10 !important;
}

/* ============ 联赛页面表头和赛事行对齐 ============ */
.category-table-header {
  display: flex;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  gap: 12px;
}

.category-row {
  display: flex;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.035);
}

.category-row .col-date-time {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-row .col-teams {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-row .col-teams .team-name:first-child {
  width: calc(50% - 15px);
  text-align: right;
}

.category-row .col-teams .vs {
  width: 30px;
  text-align: center;
}

.category-row .col-teams .team-name:last-child {
  width: calc(50% - 15px);
  text-align: left;
}

.category-row .col-streams {
  width: 120px;
  flex-shrink: 0;
  text-align: left;
}

/* ============ 联赛名称省略 ============ */
.league-tag {
  display: inline-block !important;
  max-width: 72px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* ============ 移动端对阵左对齐 ============ */
@media (max-width: 768px) {
  .match-table-row .col-teams {
    justify-content: flex-start !important;
  }
  
  .match-table-row .col-teams .team-name:first-child {
    width: auto !important;
    text-align: left !important;
  }
  
  .match-table-row .col-teams .vs {
    width: auto !important;
    text-align: left !important;
    margin-left: 8px;
  }
  
  .match-table-row .col-teams .team-name:last-child {
    width: auto !important;
    text-align: left !important;
  }
}


/* 联赛名称省略 - 强制覆盖 */
.league-tag {
  display: inline-block !important;
  max-width: 120px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* 联赛列统一固定宽度 */
.league-tag,
.match-table-header .col-league-title,
.match-table-row .col-league {
  width: 120px !important;
  min-width: 120px !important;
  max-width: 120px !important;
  flex-shrink: 0 !important;
}

/* site-logo样式 */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

