/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  /* Offset header height for transparent effect if needed */
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
  /* In a real theme, this would be a dynamic image */
  background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0565c6a?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), var(--color-bg-dark));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-match-card {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
}

.match-header {
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

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

.team {
  flex: 1;
}

.team-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-sm);
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
}

.team-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.match-vs {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent-primary);
  padding: 0 var(--spacing-md);
  text-shadow: var(--glow-text);
}

.match-info {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.match-time {
  font-weight: 600;
  color: var(--color-text-primary);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.time-unit {
  text-align: center;
}

.time-unit .number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent-primary);
}

.time-unit .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}