/* matches.css - Clean & Organized */
/* =========================================================
   VARIABLES & BASE STYLES
   ========================================================= */

:root {
  /* Primary Colors - Emerald Green */
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --primary-glow: rgba(16, 185, 129, 0.25);
  
  /* Accent Colors */
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.25);
  
  /* Status Colors */
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.12);
  --info: #10b981;
  --info-bg: rgba(16, 185, 129, 0.12);
  
  /* Background Colors - Light Theme */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  
  /* Text Colors - Light Theme */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Borders - Light Theme */
  --border-subtle: rgba(0, 0, 0, 0.04);
  --border-default: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.06);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--border-card);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

[data-theme="dark"] {
  --bg-primary: #0a0d14;
  --bg-secondary: #111621;
  --bg-tertiary: #161d2a;
  --bg-elevated: #1a2235;
  --bg-card: #0f1419;
  
  --text-primary: #f0f4fc;
  --text-secondary: #8b95a8;
  --text-muted: #5a6478;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-card: rgba(255, 255, 255, 0.08);
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--border-card);
}

/* =========================================================
   TODAY HERO SECTION
   ========================================================= */

.today-hero {
  padding: var(--space-8) 0 var(--space-6);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-current {
  color: var(--text-secondary);
  font-weight: 600;
}

.today-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.today-title-group h1 {
  font-family: var(--font-display);
  /*font-size: clamp(1.75rem, 4vw, 2.75rem);*/
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: var(--leading-tight);
}

.today-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.today-date {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.today-date svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.live-update-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem var(--space-3);
  background: var(--danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--danger);
  animation: pulse 2s ease-in-out infinite;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: var(--danger);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.today-stats-mini {
  display: flex;
  gap: var(--space-4);
}

.stat-mini {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.stat-mini-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: var(--text-base);
}

.today-actions .btn-primary {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* =========================================================
   FILTER PILLS
   ========================================================= */

.filter-pills {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar { 
  display: none; 
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem var(--space-4);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  background: var(--bg-elevated);
  border-color: var(--border-default);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.filter-pill.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* =========================================================
   MATCHES TOOLBAR - DATE PICKER
   ========================================================= */

.matches-toolbar { 
  margin: var(--space-6) 0 var(--space-4);
}

.matches-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.date-nav {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-nav:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.date-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.date-field-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#predDate {
  width: 140px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 0 var(--space-3);
  font-weight: 600;
  font-size: var(--text-sm);
  outline: none;
  transition: all var(--transition-fast);
}

#predDate:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* =========================================================
   LEAGUE SECTIONS
   ========================================================= */

.league-section {
  margin-bottom: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  overflow: hidden;
}

.league-header {
  background: var(--bg-secondary);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.league-info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.league-flag {
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.league-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.league-flag-emoji {
  font-size: 24px;
  line-height: 1;
}

.league-title {
  flex: 1;
}

.league-title h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-1) 0;
}

.match-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.league-matches {
  padding: var(--space-4);
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .league-matches {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-6);
  }
}

/* Add to matches.css */

/* Premium match card styling */
.match-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  /*padding: var(--space-4);*/
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
  position: relative;
}

.match-card-premium:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.match-time-outer {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--bg-tertiary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.match-card-body {
  margin-top: var(--space-2);
}

.match-info-section {
  margin-bottom: var(--space-4);
}

.match-league-name {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.match-teams-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.team-block {
  flex: 1;
  text-align: center;
}

/*.team-block.home {*/
/*  text-align: left;*/
/*}*/

/*.team-block.away {*/
/*  text-align: right;*/
/*}*/

.team-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.match-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  min-width: 80px;
}

.match-score-value {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--text-primary);
}

.match-status-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* Match data sections */
.match-data-sections {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.match-data-sections1 {
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.odds-section,
.prob-section,
.prediction-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  min-width: 100px;
}

.odds-label,
.prob-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.odds-value-box {
  padding: var(--space-2) var(--space-4);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
}

.odds-value {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--success);
}

/* Probability visualization */
.prob-items {
  display: flex;
  gap: var(--space-3);
}

.prob-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.prob-square {
  width: 40px;
  height: 60px;
  position: relative;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  overflow: hidden;
}

.prob-square-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: height 0.3s ease;
}

.prob-square-fill.neutral {
  background: var(--bg-elevated);
}

.prob-square-fill.high {
  background: linear-gradient(to top, var(--primary), var(--primary-light));
}

.prob-square-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1;
}

.prob-outcome-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-primary);
}

/* Prediction section */
.prediction-flame {
  font-size: 1.5rem;
}

.prediction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.prediction-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prediction-value {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-primary);
}

/* =========================================================
   MATCH CARDS - IMAGE LAYOUT
   ========================================================= */

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all var(--transition-base);
  position: relative;
}

.match-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Match Header - Time & Status */
.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.match-time {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 600;
}

.match-time svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.match-status {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.match-status.finished {
  background: var(--success-bg);
  color: var(--success);
}

/* Teams Section - Image Layout */
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  gap: var(--space-4);
}

.team {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.home-team {
  justify-content: flex-start;
}

.away-team {
  justify-content: flex-end;
}

.team-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.team-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.team-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-name {
  /*font-size: var(--text-base);*/
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Match VS Section with Scores - Image Layout */
.match-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  min-width: 100px;
}

.vs-text {
  /*font-size: var(--text-xs);*/
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.match-score-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.team-score {
  /*font-size: var(--text-2xl);*/
  font-weight: 800;
  color: var(--text-primary);
  min-width: 40px;
  text-align: center;
}

.team-score.winner {
  color: var(--primary);
}

.match-result {
  /*font-size: var(--text-sm);*/
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.match-result.home-win {
  background: var(--success-bg);
  color: var(--success);
}

.match-result.away-win {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.match-result.draw {
  background: var(--warning-bg);
  color: var(--warning);
}

/* Prediction Info */
.prediction-info {
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
}

.prediction-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.prediction-market {
  /*font-size: var(--text-sm);*/
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prediction-pick {
  /*font-size: var(--text-xl);*/
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.prediction-odds {
  /*font-size: var(--text-base);*/
  font-weight: 700;
  color: var(--success);
  padding: var(--space-1) var(--space-3);
  background: var(--success-bg);
  border-radius: var(--radius-full);
}

/* Confidence Section */
.confidence-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.confidence-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*font-size: var(--text-sm);*/
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.confidence-label strong {
  color: var(--text-primary);
  font-weight: 700;
  /*font-size: var(--text-lg);*/
}

.confidence-bar {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.confidence-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.confidence-bar.high-confidence .confidence-fill {
  background: linear-gradient(90deg, var(--primary), var(--success));
}

.confidence-bar.medium-confidence .confidence-fill {
  background: linear-gradient(90deg, var(--warning), var(--primary));
}

.confidence-bar.low-confidence .confidence-fill {
  background: linear-gradient(90deg, var(--danger), var(--warning));
}

/* Prediction Details */
.prediction-details {
  margin-top: var(--space-4);
}

.prediction-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*font-size: var(--text-sm);*/
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  padding: var(--space-2) 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.prediction-details summary::-webkit-details-marker {
  display: none;
}

.prediction-details summary::after {
  content: '›';
  /*font-size: var(--text-lg);*/
  transition: transform 0.2s ease;
}

.prediction-details[open] summary::after {
  transform: rotate(90deg);
}

.details-content {
  padding-top: var(--space-3);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  /*font-size: var(--text-sm);*/
  border-bottom: 1px solid var(--border-subtle);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
}

.detail-value {
  color: var(--text-primary);
  font-weight: 600;
}

/* =========================================================
   LOAD MORE SECTION
   ========================================================= */

.load-more-section {
  text-align: center;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--space-8);
}

.load-more-stats {
  margin-bottom: var(--space-4);
}

.load-more-stats p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.load-more-stats span {
  color: var(--text-primary);
  font-weight: 700;
}

#load-more-btn {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

#load-more-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

#load-more-btn:hover svg {
  transform: translateY(2px);
}

/* =========================================================
   LOADING & ERROR STATES
   ========================================================= */

.matches-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
  color: var(--text-muted);
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-4);
}

.matches-error {
  text-align: center;
  padding: var(--space-12);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.error-icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
}

.no-matches {
  text-align: center;
  padding: var(--space-12);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.no-matches-icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
}

.no-predictions-message {
  text-align: center;
  padding: var(--space-12);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.no-predictions-icon {
  margin-bottom: var(--space-4);
}

.no-predictions-icon svg {
  width: 64px;
  height: 64px;
  color: var(--text-muted);
  margin: 0 auto;
}

.no-predictions-message h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.no-predictions-message p {
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* =========================================================
   VIP CTA
   ========================================================= */

.vip-cta {
  margin-top: var(--space-8);
  text-align: center;
}

.vip-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.vip-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1; 
  }
  50% { 
    transform: scale(1.02); 
    opacity: 0.9; 
  }
}

@keyframes dotPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: 0.5; 
    transform: scale(0.85); 
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 768px) {
  .today-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  
  .today-title-group h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .today-actions {
    width: 100%;
  }
  
  .today-actions .btn {
    width: 100%;
  }
  
  .league-header {
    padding: var(--space-3) var(--space-4);
  }
  
  .league-matches {
    padding: var(--space-3);
    grid-template-columns: 1fr;
  }
  
  .match-card {
    padding: var(--space-3);
  }
  
  .team-logo {
    width: 40px;
    height: 40px;
  }
  
  .team-name {
    font-size: var(--text-sm);
  }
  
  .match-vs {
    min-width: 80px;
  }
  
  .team-score {
    font-size: var(--text-xl);
    min-width: 32px;
  }
  
  .prediction-pick {
    font-size: var(--text-lg);
  }
  
  .load-more-section {
    padding: var(--space-6) 0;
  }
  
  #load-more-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .today-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  
  .today-stats-mini {
    width: 100%;
    justify-content: space-between;
  }
  
  .match-teams {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .match-vs {
    order: 2;
    flex-direction: row;
    gap: var(--space-4);
    min-width: auto;
  }
  
  .team {
    width: 100%;
    justify-content: center;
  }
  
  .home-team {
    order: 1;
  }
  
  .away-team {
    order: 3;
  }
  
  .team-name {
    max-width: 200px;
  }
  
  .prediction-main {
    align-items: flex-start;
    text-align: left;
  }
}