* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0021A5;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.page {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  gap: 0.75rem;
}

.hero-logo {
  width: clamp(120px, 20vw, 220px);
  height: auto;
}

.headline {
  font-size: clamp(1.75rem, 6vw, 3rem);
  letter-spacing: 0.1em;
  color: #FA4616;
}

.countdown {
  display: flex;
  gap: clamp(0.5rem, 3vw, 1.5rem);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
}

.countdown-unit span:first-child {
  font-size: clamp(1.75rem, 8vw, 3.5rem);
  font-weight: 700;
  color: #FA4616;
  font-variant-numeric: tabular-nums;
}

.label {
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kickoff-message {
  font-size: clamp(2rem, 8vw, 4rem);
  color: #FA4616;
  font-weight: 700;
}

.game-info {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
}

.footer {
  position: absolute;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.uf-wordmark {
  height: 28px;
  width: 156px;
}

.credit {
  font-size: 0.7rem;
  opacity: 0.85;
}
