/* ═══════════════════════════════════════════
   HERO — Featured Live Match Banner
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 340px;
  background: linear-gradient(135deg, #141a10 0%, #0f1a14 50%, #101517 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  min-height: 340px;
  max-width: 60%;
}

.hero-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--live);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  width: fit-content;
  margin-bottom: 12px;
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Center content */
  gap: 8px;
  padding: 12px 24px; /* Slightly reduced horizontal padding */
  background: var(--accent);
  color: white;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px; /* Reduced letter spacing slightly */
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 12px rgba(133, 199, 66, 0.3);
  white-space: nowrap; /* Prevent text wrapping inside button */
  flex-shrink: 0;
}

.btn-watch:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(133, 199, 66, 0.5);
}

.btn-watch:active {
  transform: translateY(0);
}

.btn-watch svg {
  width: 16px;
  height: 16px;
}

.btn-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Center content */
  gap: 8px;
  padding: 12px 24px; /* Slightly reduced horizontal padding */
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px; /* Reduced letter spacing slightly */
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap; /* Prevent text wrapping inside button */
  flex-shrink: 0;
}

.btn-schedule:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-schedule:active {
  transform: translateY(0);
}

/* Hero Score */
.hero-score {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

.hero-score-teams {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team-badge {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.score-display {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text-primary);
  letter-spacing: 4px;
  padding: 0 8px;
}

.score-display .separator {
  color: var(--text-muted);
  margin: 0 4px;
}
