html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: white;

  min-height: 100%;
  overflow-x: hidden;

  /* ❌ background entfernt → kommt aus ui.css */
}

/* =========================
   PAGE WRAPPER
========================= */

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 60px 20px;

  position: relative;
  z-index: 1; /* 🔥 wichtig damit es über overlay liegt */
}

/* =========================
   LEGAL BOX
========================= */

.box {
  width: min(800px, 90vw);

  padding: 22px;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(12px);

  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* =========================
   TYPOGRAPHY
========================= */

.box h1 {
  font-size: 28px;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
}

.box h2 {
  font-size: 16px;
  margin-top: 18px;
  margin-bottom: 8px;

  opacity: 0.9;
}

.box p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;

  margin: 6px 0;
}

.box hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 18px 0;
}

/* =========================
   LINKS
========================= */

.box a {
  color: #00d4ff;
  text-decoration: none;
}

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

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .box {
    padding: 16px;
  }

  .box h1 {
    font-size: 22px;
  }
}