@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg-black: #020304;
  color: rgba(255, 255, 255, 0.95);
  --violet: #fcfcfc;
}

body {
  margin: 0;
  background-color: var(--bg-black);
  background-image: linear-gradient(180deg, #0f1635 0%, #070b18 100%);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.legal-container {
  max-width: 700px;
  width: 100%;
  background: rgba(12, 18, 24, 0.8);
  border: 1px solid rgba(137, 235, 255, 0.287);
  padding: 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--violet);
}

a.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

a.back-link:hover {
  opacity: 1;
}

p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
