/* ===============================
   LEGAL PAGES v2 (PREMIUM)
================================= */

body {
  background: radial-gradient(circle at top, #020617 0%, #000814 100%);
  color: #e5e7eb;
  font-family: Inter, sans-serif;
  margin: 0;
}

/* WRAPPER */
.legal-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

/* CARD */
.legal {
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 50px;
  backdrop-filter: blur(6px);
}

/* LOGO */
.legal-logo {
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5e7eb;
}

.legal-logo strong {
  color: #b91c1c;
}

/* HEADINGS */
.legal h1 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #b91c1c;
}

/* TEXT */
.legal p {
  margin-bottom: 14px;
  line-height: 1.65;
  color: #cbd5f5;
}

/* LIST */
.legal ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal li {
  margin-bottom: 6px;
}

/* LINKS */
.legal a {
  color: #b91c1c;
  text-decoration: none;
}

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

/* SEPARATOR */
.legal hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 30px 0;
}

/* SMALL TEXT */
.legal small {
  display: block;
  margin-top: 40px;
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .legal {
    padding: 30px;
  }

  .legal h1 {
    font-size: 1.8rem;
  }
}

.legal {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}