/* ============================================ */
/* impressum.css – FlyFM Legal Style (Optimiert)*/
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,800;0,900;1,700&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  /* COLORS */
  --bg:       #06080f;
  --card:     #101828;
  --card-alt: #141f30;
  --primary:  #1a9fff;
  --primary-2:#0070d4;
  --accent:   #ff6020;
  --text:     #e8eeff;
  --subtext:  #5a6a88;
  --border:   rgba(255,255,255,0.08);
  --radius:   12px;

  /* TYPOGRAPHY */
  --font-main: 'Instrument Sans', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 40px;
}
.page-hero { margin-bottom: 40px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--primary); border-radius: 2px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 0.92; letter-spacing: -1px;
  margin-bottom: 14px;
}
h1 em { font-style: italic; color: var(--primary); }

.page-lead {
  color: var(--subtext);
  font-size: 1rem; line-height: 1.75;
  max-width: 500px;
}

/* ── NOTICE BOX ── */
.notice-box {
  background: rgba(255,96,32,0.08);
  border: 1px solid rgba(255,96,32,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.85rem; color: var(--subtext); line-height: 1.7;
}
.notice-box strong { color: var(--accent); }
.notice-box code {
  color: var(--accent);
  font-family: monospace;
  background: rgba(255,96,32,0.1);
  padding: 2px 6px;
  border-radius: 6px;
}

/* ── LEGAL BLOCKS ── */
.legal-wrap { max-width: 680px; }

.legal-block {
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  animation: fadeSlide 0.4s ease-in-out forwards;
}
.legal-block:hover {
  border-color: rgba(26,159,255,0.25);
  transform: translateY(-2px);
}
.legal-block h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.legal-block p {
  color: var(--subtext); line-height: 1.85; font-size: 0.88rem;
}
.legal-block a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.legal-block a:hover { text-decoration: underline; opacity: 0.85; }

/* ── BUTTON ── */
.back-radio { margin-top: 48px; text-align: left; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 60px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-main);
  transition: all 0.2s ease-in-out;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 5px 15px rgba(26,159,255,0.25);
  transform: translateY(-1px);
}

/* ── GLOW ── */
.bg-glow {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
}
.bg-glow-1 { width: 600px; height: 600px; background: var(--primary); top: -150px; right: -100px; }
.bg-glow-2 { width: 400px; height: 400px; background: var(--accent); bottom: 100px; left: -100px; }

/* ── ANIMATION ── */
@keyframes fadeSlide {
  from { opacity: 0; transform: translate3d(0,12px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.legal-block:nth-child(1) { animation-delay: 0.05s; }
.legal-block:nth-child(2) { animation-delay: 0.1s; }
.legal-block:nth-child(3) { animation-delay: 0.15s; }
.legal-block:nth-child(4) { animation-delay: 0.2s; }
.legal-block:nth-child(5) { animation-delay: 0.25s; }
.legal-block:nth-child(6) { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-wrap  { padding: 80px 20px; }
  .legal-block { padding: 20px 18px; }
  .btn-outline { padding: 10px 22px; font-size: 0.85rem; }
}