html {
  scroll-behavior: smooth;
}

body.is-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.age-gate.is-visible {
  display: grid;
}

.button-primary,
.button-secondary,
.model-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.model-link:hover,
.model-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(201, 76, 95, 0.55);
  background: #c94c5f;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(201, 76, 95, 0.2);
}

.button-secondary {
  border: 1px solid rgba(247, 240, 234, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #f7f0ea;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(201, 76, 95, 0.58);
  background: rgba(201, 76, 95, 0.12);
}

.model-link {
  border: 1px solid rgba(247, 240, 234, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f7f0ea;
}

.model-link:hover,
.model-link:focus-visible {
  border-color: rgba(201, 76, 95, 0.64);
  background: rgba(201, 76, 95, 0.16);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
