.age-screen {
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 5vw, 48px);
}

.age-panel {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-panel h1 {
  color: var(--night);
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.12;
  text-wrap: balance;
}

.age-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.age-actions button {
  min-height: 52px;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
}

.age-actions button:focus-visible {
  outline: 3px solid var(--night);
  outline-offset: 4px;
}
