/* Age Gate — fullscreen overlay */

.age-gate-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background image — fixed, full viewport */
.age-gate-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.age-gate-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

/* Dark overlay */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgb(2 0 1 / 61%);
}

/* Top/bottom gradient vignette */
.age-gate-vignette {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgb(15, 5, 12) 0%, rgba(15, 5, 12, 0) 50%, rgb(15 5 12 / 21%) 100%);
  pointer-events: none;
}

/* Pink ambient glow */
.age-gate-glow {
  position: fixed;
  left: 17.58%;
  right: 19.14%;
  top: 16.31%;
  bottom: 4.59%;
  z-index: 3;
  background: radial-gradient(50% 50% at 50% 50%, rgb(236 96 144 / 11%) 0%, rgba(236, 96, 144, 0) 100%);
  filter: blur(50px);
  pointer-events: none;
}

/* Card */
.age-gate-card {
  position: relative;
  z-index: 4;
  width: min(340px, 92vw);
  background: rgba(28, 16, 24, 0.45);
  border: 1px solid rgba(255, 177, 197, 0.25);
  box-shadow: inset 0px 1px 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 40px 32px 36px;
  text-align: center;
  animation: card-in 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* Shield icon */
.age-gate-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  background: var(--accent-gradient, linear-gradient(103.86deg, #EC6090 0%, #662E7D 100%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate-icon svg { width: 20px; height: 20px; fill: #fff; }

/* Legal text above heading */
.age-gate-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 0 4px;
}

/* Main heading */
.age-gate-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

/* Subtitle */
.age-gate-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Buttons */
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
