/* ═══════════════════════════════════════════════════════════
   SPORTZLIVE — COMPONENTS CSS
   Cards, Score Cards, News, Tables, Widgets, Badges
═══════════════════════════════════════════════════════════ */

/* ── SCORE CARDS ── */
.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.score-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease);
}

.score-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.score-card:hover::before { transform: scaleX(1); }

.score-card.live {
  border-color: var(--border-red);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,0,29,0.05) 100%);
}

.score-card.live::before { transform: scaleX(1); }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.card-tournament {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.status-live {
  background: var(--red);
  color: #fff;
  animation: blink-badge 1.5s ease-in-out infinite;
}

.status-upcoming { background: rgba(59,130,246,0.15); color: #60a5fa; }
.status-finished { background: var(--bg-elevated); color: var(--text-muted); }

.card-teams {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.card-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.card-team-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
}

.card-team-flag { font-size: 20px; }

.card-team-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.card-team-score {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-team-overs {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 50px;
  text-align: right;
}

.card-team-row.batting .card-team-name { color: var(--text-primary); }
.card-team-row.batting .card-team-score { color: var(--red); }

.card-footer {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-venue { display: flex; align-items: center; gap: 4px; }

/* ── NEWS CARDS ── */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  transition: all var(--duration-base) var(--ease);
}

.news-featured:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.news-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.news-featured:hover .news-featured-img img { transform: scale(1.05); }

.news-cat-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: #fff;
}

.news-cat-badge.cricket  { background: #16a34a; }
.news-cat-badge.football { background: #2563eb; }
.news-cat-badge.ipl      { background: #d97706; }
.news-cat-badge.tennis   { background: #7c3aed; }
.news-cat-badge.other    { background: #64748b; }

.news-featured-body {
  padding: var(--space-xl) var(--space-xl) var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-featured-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.news-featured-body h3 a { color: var(--text-primary); transition: color var(--duration-fast); }
.news-featured-body h3 a:hover { color: var(--red); }

.news-featured-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.share-btns { display: flex; gap: 6px; margin-left: auto; }

.share-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.share-btn:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
}

.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-card-img img { transform: scale(1.08); }

.news-card-body { padding: var(--space-md); }

.news-card-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast);
}

.news-card:hover .news-card-body h4 { color: var(--red); }

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* Load More */
.load-more-btn {
  width: 100%;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--duration-fast);
}

.load-more-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── SIDEBAR WIDGETS ── */
.sidebar { display: flex; flex-direction: column; gap: var(--space-lg); }

.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.widget-header {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elevated);
}

.widget-link {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
}

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

.widget-body { padding: var(--space-md); }

/* Today's Matches Widget */
.today-match-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  gap: var(--space-sm);
}

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

.today-match-teams {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  flex: 1;
}

.today-match-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Points Mini Table */
.points-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.points-mini-table th {
  text-align: left;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.points-mini-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.points-mini-table tr:last-child td { border-bottom: none; }

.points-mini-table tr:hover td { background: var(--bg-elevated); }

.points-mini-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-rank {
  width: 20px;
  height: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.table-rank.top { background: var(--red); color: #fff; }

/* Performer List */
.performer-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.performer-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast);
  cursor: pointer;
}

.performer-item:hover { background: var(--bg-elevated); }

.performer-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.performer-info { flex: 1; min-width: 0; }

.performer-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.performer-stat {
  font-size: 12px;
  color: var(--text-muted);
}

.performer-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
}

/* Poll Widget */
.poll-question {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.poll-options { display: flex; flex-direction: column; gap: var(--space-sm); }

.poll-option {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.poll-option:hover { border-color: var(--red); color: var(--text-primary); background: var(--red-soft); }
.poll-option.voted { border-color: var(--red); color: var(--red); background: var(--red-soft); }

.poll-result-item {
  margin-bottom: var(--space-sm);
}

.poll-result-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}

.poll-result-bar {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.poll-result-fill {
  height: 100%;
  background: var(--red);
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease);
}

.poll-total {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  text-align: center;
}

/* Trending List */
.trending-list { display: flex; flex-direction: column; gap: 4px; }

.trending-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 13px;
  transition: background var(--duration-fast);
}

.trending-item:hover { background: var(--bg-elevated); }

.trend-rank {
  width: 22px;
  height: 22px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.trending-item:first-child .trend-rank { background: var(--red); color: #fff; }

.trending-item span:nth-child(2) {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trend-count {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── SCHEDULE CARDS ── */
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-base) var(--ease);
}

.schedule-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.schedule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.schedule-tournament {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.schedule-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.schedule-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.schedule-team-flag { font-size: 32px; }

.schedule-team-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.schedule-team-score {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

.schedule-vs {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-elevated);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.schedule-info {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-result {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

/* ── RANKINGS TABLE ── */
.rankings-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rankings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rankings-table thead tr {
  background: var(--bg-elevated);
}

.rankings-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.rankings-table td {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

.rankings-table tr:hover td { background: var(--bg-elevated); }

.rank-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  width: 32px;
}

.rank-num.top3 { color: var(--red); }

.rank-player {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.rank-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.rank-rating {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--red);
}

.rank-change {
  font-size: 12px;
  font-weight: 600;
}

.rank-change.up   { color: #22c55e; }
.rank-change.down { color: var(--red); }
.rank-change.same { color: var(--text-muted); }

/* IPL Points Table */
.ipl-points-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ipl-points-full h3 {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.ipl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ipl-table th {
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-elevated);
}

.ipl-table th:first-child { text-align: left; }

.ipl-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

.ipl-table td:first-child { text-align: left; }
.ipl-table tr:hover td { background: var(--bg-elevated); }

.ipl-team-cell {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.ipl-team-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pts-cell {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--red);
}

.nrr-cell { font-family: var(--font-mono); font-size: 12px; }
.nrr-cell.pos { color: #22c55e; }
.nrr-cell.neg { color: var(--red); }

.form-dots { display: flex; gap: 3px; justify-content: center; }

.form-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
}

.form-dot.w { background: #22c55e; }
.form-dot.l { background: var(--red); }
.form-dot.nr { background: var(--text-muted); }

/* ── VIDEO CARDS ── */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.video-card:hover .video-thumb img { transform: scale(1.08); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(232,0,29,0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all var(--duration-fast);
  backdrop-filter: blur(4px);
}

.video-card:hover .video-play-btn {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px var(--red-glow);
}

.video-duration {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.video-body { padding: var(--space-md); }

.video-body h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── TEAM CARDS ── */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}

.team-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
  background: var(--red-soft);
}

.team-card-logo {
  font-size: 40px;
  transition: transform var(--duration-base) var(--ease-bounce);
}

.team-card:hover .team-card-logo { transform: scale(1.2) rotate(-5deg); }

.team-card-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.team-card-country {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PLAYER CARDS ── */
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
}

.player-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.player-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.player-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.player-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-card));
}

.player-card-body { padding: var(--space-md); }

.player-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.player-card-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.player-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.player-stat {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  text-align: center;
}

.player-stat-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.player-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── FANTASY CARDS ── */
.fantasy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
}

.fantasy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  pointer-events: none;
}

.fantasy-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.fantasy-match {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.fantasy-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.fantasy-picks { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.fantasy-pick {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  font-size: 13px;
}

.pick-role {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.pick-role.bat  { background: rgba(34,197,94,0.15); color: #22c55e; }
.pick-role.bowl { background: rgba(59,130,246,0.15); color: #60a5fa; }
.pick-role.ar   { background: rgba(168,85,247,0.15); color: #c084fc; }
.pick-role.wk   { background: rgba(245,158,11,0.15); color: #fbbf24; }
.pick-role.c    { background: var(--red); color: #fff; }
.pick-role.vc   { background: rgba(232,0,29,0.2); color: var(--red); }

.pick-name { flex: 1; font-weight: 600; }
.pick-pts  { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--red); }

.fantasy-ai-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
}

/* ── COMMENTARY ITEMS ── */
.commentary-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast);
}

.commentary-item:hover { background: var(--bg-elevated); }

.commentary-item.wicket {
  background: rgba(232,0,29,0.08);
  border-left: 3px solid var(--red);
}

.commentary-item.boundary {
  background: rgba(34,197,94,0.08);
  border-left: 3px solid #22c55e;
}

.commentary-item.six {
  background: rgba(168,85,247,0.08);
  border-left: 3px solid #c084fc;
}

.commentary-over {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  min-width: 44px;
  flex-shrink: 0;
}

.commentary-ball {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.commentary-ball.six    { background: #7c3aed; color: #fff; border-color: #7c3aed; }
.commentary-ball.four   { background: #16a34a; color: #fff; border-color: #16a34a; }
.commentary-ball.wicket { background: var(--red); color: #fff; border-color: var(--red); }
.commentary-ball.dot    { background: var(--bg-elevated); color: var(--text-muted); }

.commentary-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.commentary-text strong { color: var(--text-primary); }

/* ── NEWS FILTERS ── */
.news-filters {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── SCHEDULE TABS ── */
.schedule-tabs, .ranking-tabs, .team-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-red    { background: var(--red); color: #fff; }
.badge-green  { background: #16a34a; color: #fff; }
.badge-blue   { background: #2563eb; color: #fff; }
.badge-orange { background: #d97706; color: #fff; }
.badge-gray   { background: var(--bg-elevated); color: var(--text-muted); border: 1px solid var(--border); }

/* ── RESPONSIVE COMPONENTS ── */
@media (max-width: 768px) {
  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured-img { min-height: 200px; }

  .news-featured-body {
    padding: var(--space-lg);
  }

  .rankings-table th:nth-child(n+5),
  .rankings-table td:nth-child(n+5) {
    display: none;
  }

  .ipl-table th:nth-child(n+6),
  .ipl-table td:nth-child(n+6) {
    display: none;
  }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .fantasy-grid { grid-template-columns: 1fr; }
}