/* Age verification gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__card {
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, #c2185b 0%, #7b1fa2 42%, #283593 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  color: #fff;
}

.age-gate__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: #ff4da6;
}

.age-gate__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.age-gate__title {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ff4da6;
  line-height: 1.25;
}

.age-gate__box {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.38);
  text-align: left;
}

.age-gate__box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.age-gate__box strong {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: #fff;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__btn {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease, filter 0.2s ease;
}

.age-gate__btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.15);
}

.age-gate__btn:not(:disabled):hover {
  filter: brightness(1.06);
}

.age-gate__btn:not(:disabled):active {
  transform: scale(0.985);
}

.age-gate__btn--yes {
  background: #ff2d8a;
  color: #fff;
}

.age-gate__btn--no {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.age-gate__note {
  margin: 16px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.age-gate__countdown {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

body.age-gate-locked {
  overflow: hidden !important;
}
