/* AGE / RUO GATE — first-touch lockout */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: gateFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.age-gate.is-leaving {
  animation: gateFadeOut 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes gateFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes gateFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.age-gate-card {
  max-width: 520px;
  width: 100%;
  background: #0A0A0A;
  color: #F5F5F2;
  border: 1px solid rgba(245, 245, 242, 0.10);
  border-radius: 8px;
  padding: 44px 40px 36px;
  /* box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55); */
}
.age-gate-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0066FF;
  padding: 6px 12px;
  border: 1px solid rgba(0, 102, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.10);
  margin-bottom: 24px;
}
.age-gate-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0066FF;
  animation: pulse 2.4s infinite;
}
.age-gate-title {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  line-height: 1.05;
  letter-spacing: -0.025em !important;
  color: #F5F5F2;
  margin-bottom: 16px !important;
}
.age-gate-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 245, 242, 0.78);
  margin-bottom: 16px;
}
.age-gate-checks { margin: 24px 0 28px; }
.age-gate-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  border-top: 1px solid rgba(245, 245, 242, 0.10);
  font-size: 14px;
  line-height: 1.5;
  color: #F5F5F2;
  user-select: none;
}
.age-gate-check:last-child { border-bottom: 1px solid rgba(245, 245, 242, 0.10); }
.age-gate-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid rgba(245, 245, 242, 0.40);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  transition: all 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.age-gate-check input[type="checkbox"]:hover { border-color: #0066FF; }
.age-gate-check input[type="checkbox"]:checked {
  background: #0066FF;
  border-color: #0066FF;
}
.age-gate-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.age-gate-enter {
  width: 100% !important;
  background: #F5F5F2 !important;
  color: #0A0A0A !important;
  border: 1px solid #F5F5F2 !important;
  padding: 16px 24px !important;
  border-radius: 4px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  line-height: normal !important;
  cursor: pointer !important;
  transition: all 320ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.age-gate-enter:hover:not(:disabled) {
  background: #0066FF !important;
  color: white !important;
  border-color: #0066FF !important;
}
.age-gate-enter:disabled {
  background: rgba(245, 245, 242, 0.10) !important;
  color: rgba(245, 245, 242, 0.35) !important;
  border-color: rgba(245, 245, 242, 0.10) !important;
  cursor: not-allowed !important;
}
.age-gate-footnote {
  margin-top: 20px !important;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.40);
  text-align: center;
}
body.gate-locked { overflow: hidden; }

@media (max-width: 640px) {
  .age-gate { padding: 16px; align-items: flex-start; padding-top: 32px; }
  .age-gate-card { padding: 32px 24px 28px; }
  .age-gate-title { font-size: 28px; }
  .age-gate-body { font-size: 14px; }
  .age-gate-check { font-size: 13px; padding: 12px 0; }
}
