/* VaultvectraSpin - Premium age gate */

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 35% 20%, rgba(201, 162, 39, 0.16), transparent 48%),
    radial-gradient(ellipse at 70% 85%, rgba(13, 74, 58, 0.4), transparent 50%),
    rgba(4, 12, 10, 0.96);
  backdrop-filter: blur(10px);
}

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

.age-gate-dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 2.35rem 1.85rem 2.15rem;
  background:
    linear-gradient(165deg, rgba(18, 48, 38, 0.95) 0%, rgba(8, 18, 14, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(10, 20, 16, 0.8) inset,
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(201, 162, 39, 0.08);
  text-align: center;
  color: #e8f0ea;
  overflow: hidden;
}

.age-gate-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(224, 196, 90, 0.07) 50%,
    transparent 60%
  );
  background-size: 220% 100%;
  animation: vaultShimmer 7s ease-in-out infinite;
  pointer-events: none;
}

.age-gate-dialog h2 {
  position: relative;
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #e0c45a;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.age-gate-dialog p {
  position: relative;
  margin: 0 0 0.85rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(232, 240, 234, 0.9);
}

.age-gate-dialog .age-gate-legal {
  font-size: 0.9rem;
  color: rgba(232, 240, 234, 0.75);
}

.age-gate-dialog .age-gate-notice {
  margin-bottom: 1.5rem;
  padding: 0.85rem 0.95rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-left: 3px solid #c9a227;
  text-align: left;
  font-size: 0.9rem;
  color: rgba(232, 240, 234, 0.82);
}

.age-gate-yes {
  position: relative;
  display: inline-block;
  min-width: 160px;
  padding: 0.95rem 2.25rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1210;
  background: linear-gradient(180deg, #f0d878 0%, #c9a227 55%, #a8841a 100%);
  border: 1px solid #8b6914;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.age-gate-yes:hover,
.age-gate-yes:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
  outline: none;
}

.age-gate-yes:active {
  transform: translateY(0);
}

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