/* Age restriction modal styles */

.sq-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: radial-gradient(circle at top, rgba(10, 23, 35, 0.86), rgba(5, 12, 20, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-6);
}

.sq-age-modal {
  max-width: 520px;
  width: 100%;
  padding: var(--space-16);
  text-align: left;
}

.sq-age-header h2 {
  margin-bottom: var(--space-4);
}

.sq-age-desc {
  color: var(--color-text-soft);
  margin-bottom: var(--space-8);
}

.sq-age-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.sq-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.sq-age-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .sq-age-modal {
    padding: var(--space-12);
  }

  .sq-age-actions {
    flex-direction: column;
  }

  .sq-age-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Prevent body scroll when overlay is active (class toggled via JS) */
body.sq-age-locked {
  overflow: hidden;
}
