/* Estilo base para páginas legales (sobre, moderación, seguridad) */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #4f46e5 0, transparent 55%),
    radial-gradient(circle at bottom, #db2777 0, #050010 60%);
  color: #fdf2ff;
}

/* Contenedor principal */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* Tarjeta central */
.card {
  background: rgba(8, 0, 24, 0.96);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow:
    0 18px 45px rgba(236, 72, 153, 0.3),
    0 0 0 1px rgba(244, 114, 182, 0.25);
  border: 1px solid rgba(244, 114, 182, 0.35);
}

/* Tipografía */
h1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #f9a8ff;
  text-shadow: 0 0 12px rgba(244, 114, 182, 0.6);
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  color: #fbcfe8;
}

p {
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.muted {
  font-size: 0.9rem;
  color: #c4b5fd;
  margin-bottom: 1.4rem;
}

/* Listas */
ul,
ol {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Enlaces */
a {
  color: #f9a8ff;
  text-decoration: underline;
  text-decoration-color: rgba(248, 113, 113, 0.7);
  text-underline-offset: 2px;
}

a:hover {
  color: #f472b6;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 1rem;
  margin-top: 2rem;
  color: #e5e7eb;
}

.footer a {
  text-decoration: none;
  color: #f9a8ff;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  .card {
    padding: 1.8rem 1.4rem;
    border-radius: 1.25rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.05rem;
  }
}
