/* ===========================
   Contacto Legal / DMCA
   =========================== */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at center, #250035 0%, #0b0015 100%);
  background-size: 200% 200%;
  animation: neonBG 12s ease-in-out infinite alternate;
  color: #fdf4ff;
}

/* Fondo animado neon */
@keyframes neonBG {
  0%   { background-position: 20% 50%; }
  100% { background-position: 80% 50%; }
}

/* Card */
.card {
  background: linear-gradient(180deg, rgba(46, 0, 63, 0.95), rgba(15, 0, 25, 0.98));
  border: 2px solid #ff31b6;
  border-radius: 18px;
  box-shadow:
    0 0 24px rgba(255, 0, 204, 0.75),
    0 0 50px rgba(0, 255, 242, 0.45);
  padding: 2rem;
  backdrop-filter: blur(6px);
}

/* Títulos */
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  color: #f0abfc;
  text-shadow:
    0 0 14px #ff31b6,
    0 0 24px #00ffc3;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
  color: #ffd6f6;
  border-left: 4px solid #ff31b6;
  padding-left: 0.75rem;
}

/* Texto */
p {
  color: #f5d0fe;
  line-height: 1.6;
}

/* Enlaces */
a {
  color: #a5b4fc;
}
a:hover {
  color: #c7d2fe;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 2.5rem;
  color: #f5d0feaa;
  font-size: 0.85rem;
}

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

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

/* Responsivo */
@media (max-width: 640px) {
  .card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.8rem;
  }
}
