/* Age restriction modal styles */

.peh-age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
}

.peh-age-gate--visible {
  display: flex;
}

.peh-age-gate__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(5, 5, 9, 0.98), rgba(1, 1, 3, 0.99));
  backdrop-filter: blur(20px);
}

.peh-age-gate__content {
  position: relative;
  max-width: 520px;
  width: calc(100% - 3.2rem);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(212, 169, 90, 0.2), rgba(5, 5, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-elevated);
}

.peh-age-gate__branding {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.peh-age-gate__logo-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 45% 55% 55% 45%;
  background: radial-gradient(circle at 30% 20%, #f0c876, #d4a95a 45%, #6b4b1b 100%);
}

.peh-age-gate__logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.peh-age-gate__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-3);
}

.peh-age-gate__description {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-3);
}

.peh-age-gate__legal {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.peh-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.peh-age-gate__button {
  flex: 1 1 160px;
}

@media (max-width: 640px) {
  .peh-age-gate__content {
    padding: var(--space-5);
  }

  .peh-age-gate__title {
    font-size: 2.4rem;
  }
}
