/* Exact styles matching the standalone age gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(7,10,14,.96);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important; /* Valor excepcionalmente alto para asegurar que esté por encima de todo */
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}
.age-gate.visible { display: flex; }

.age-card {
  width: min(560px, 92vw);
  background: var(--bg-elev, #141922);
  border: 1px solid var(--border, #1e2530);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.age-card h2 { margin: 0 0 8px; }
.age-card p { color: var(--muted, #8b9bb3); margin: 0 0 16px; }

.age-actions { display: flex; gap: 10px; justify-content: flex-end; }

.btn {
  border: 1px solid var(--border, #1e2530);
  background: var(--bg, #0a0d12);
  color: var(--txt, #eaf4ff);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.btn.primary { background: #1a2633; border-color: #2b3c52; }
