/* ============================================================
   PEPTINATOR MX — puerta de verificación de edad (+18)
   ============================================================ */

.gate-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.gate-bg {
  position: fixed;
  inset: 0;
  background: url("../img/hero.jpg") center / cover no-repeat, var(--bg);
  filter: brightness(0.35) saturate(0.8);
  z-index: -2;
}

.gate-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 12, 0.35) 0%, var(--bg) 90%);
}

.gate-wrap {
  width: min(560px, 92vw);
  padding: 2rem 0;
}

.gate-card {
  background: rgba(16, 16, 20, 0.92);
  border: 1px solid var(--red-deep);
  box-shadow: 0 0 50px rgba(255, 26, 26, 0.18);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  padding: 2.6rem 2.4rem 2.2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  animation: gate-in 0.25s ease-out;
}

@keyframes gate-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.4rem;
}

.gate-logo { font-size: 2.1rem; margin-bottom: 1.4rem; }

.gate-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 420px;
  margin: 0 auto 1.6rem;
}

.gate-text strong { color: var(--chrome-1); }

.gate-question {
  color: var(--chrome-2);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.4rem;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.gate-btn { width: min(320px, 100%); }

.gate-legal {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--chrome-3);
  line-height: 1.7;
}

/* ---------- Acceso denegado ---------- */
.denied-kicker { color: var(--red); }

.gate-denied-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--red);
  text-shadow: 0 0 18px var(--red-glow);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
