/* Matches hub — SportsBhav */
.matches-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  background-attachment: fixed;
}

.matches-nav {
  backdrop-filter: blur(12px);
  background: rgba(10, 14, 39, 0.85);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}

.tab-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.tab-btn:hover {
  color: #00ff88;
}
.tab-btn.active {
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.4);
  color: #00ff88;
}

.match-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.match-card:hover {
  border-color: rgba(0, 255, 136, 0.25);
  transform: translateY(-1px);
}

.match-status-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}
.match-status-pill.live {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}
.match-status-pill.upcoming {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}
.match-status-pill.finished {
  background: rgba(107, 114, 128, 0.25);
  color: #d1d5db;
}

.lang-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 200, 0.2);
  color: #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
}
