/* Shared styles for legal subpages (Impressum, Datenschutz, Danke) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0b1120;
  color: #cbd5e1;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: #60a5fa; text-decoration: none; }
a:hover { color: #93c5fd; text-decoration: underline; }

.legal-nav {
  position: sticky; top: 0;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.legal-nav .inner {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em;
}
.legal-nav .brand svg { width: 28px; height: 28px; }
.legal-nav .brand span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.legal-nav .back { font-size: 0.9rem; font-weight: 500; color: #94a3b8; }
.legal-nav .back:hover { color: #f1f5f9; text-decoration: none; }

.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px 96px; }
.legal-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; color: #f1f5f9; margin-bottom: 8px;
}
.legal-wrap .updated { color: #64748b; font-size: 0.85rem; margin-bottom: 40px; }
.legal-wrap h2 {
  font-size: 1.25rem; font-weight: 700; color: #e2e8f0;
  margin: 36px 0 12px; letter-spacing: -0.02em;
}
.legal-wrap h3 { font-size: 1rem; font-weight: 600; color: #e2e8f0; margin: 24px 0 8px; }
.legal-wrap p { margin-bottom: 14px; color: #94a3b8; }
.legal-wrap ul { margin: 0 0 14px 20px; color: #94a3b8; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: #cbd5e1; }

.placeholder {
  background: rgba(234, 179, 8, 0.12);
  border: 1px dashed rgba(234, 179, 8, 0.5);
  color: #fde68a; padding: 1px 8px; border-radius: 6px;
  font-weight: 600; font-size: 0.92em;
}

.note {
  margin-top: 40px; padding: 18px 20px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px; font-size: 0.88rem; color: #94a3b8;
}

/* Danke page */
.danke { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.danke .box { max-width: 480px; }
.danke .icon {
  width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(59,130,246,0.25);
}
.danke .icon svg { width: 34px; height: 34px; stroke: #60a5fa; }
.danke h1 { font-size: 1.8rem; font-weight: 800; color: #f1f5f9; margin-bottom: 12px; letter-spacing: -0.03em; }
.danke p { color: #94a3b8; margin-bottom: 28px; }
.danke .btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed); color: #fff;
  font-weight: 600; padding: 13px 28px; border-radius: 12px; font-size: 0.95rem;
  box-shadow: 0 0 24px rgba(59,130,246,0.25);
}
.danke .btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 0 40px rgba(59,130,246,0.4); }
