/* Self-hosted Fonts laden (DSGVO-konform, keine externen Requests) */
@import url('../fonts/fonts.css');

:root {
  --bg: #050608;
  --bg-2: #0a0d12;
  --panel: #0f1319;
  --neon: #00ff88;
  --neon-dim: #00cc6a;
  --cyan: #00e5ff;
  --magenta: #ff006e;
  --text: #e6f0e8;
  --text-dim: #7a8a80;
  --border: #1a2028;
  --grid: rgba(0, 255, 136, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
}

/* Scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* Noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

a { color: var(--neon); text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.15em;
}
nav .logo span { color: var(--neon); }
nav .nav-links { display: flex; gap: 32px; }
nav .nav-links a {
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
nav .nav-links a:hover { color: var(--neon); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
}
.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--neon);
  background: rgba(0, 255, 136, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(40px, 6vw, 82px);
  margin-bottom: 24px;
}
.hero h1 .line1 { display: block; color: var(--text); }
.hero h1 .line2 {
  display: block;
  color: var(--neon);
  text-shadow:
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 40px rgba(0, 255, 136, 0.3);
  font-style: italic;
}
.hero h1 .glitch {
  position: relative;
  display: inline-block;
}
.hero h1 .glitch::before,
.hero h1 .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}
.hero h1 .glitch::before {
  color: var(--magenta);
  transform: translate(-2px, 0);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.hero h1 .glitch::after {
  color: var(--cyan);
  transform: translate(2px, 0);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero p.lead strong { color: var(--text); }

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--neon);
  color: var(--bg);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
  position: relative;
}
.btn-primary:hover {
  background: var(--cyan);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
}
.btn-primary svg { width: 22px; height: 22px; }

.stats-mini {
  display: flex;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-dim);
}
.stats-mini span { color: var(--neon); font-weight: 700; }

/* Hero side panel */
.hero-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.hero-panel::before {
  content: '// GROUP_STATUS.log';
  position: absolute;
  top: 10px; left: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
}
.hero-panel .panel-body { margin-top: 22px; }
.hero-panel .status-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.hero-panel .status-row:last-child { border-bottom: none; }
.hero-panel .status-row .label { color: var(--text-dim); }
.hero-panel .status-row .value { color: var(--neon); font-weight: 700; }
.hero-panel .status-row .value.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-panel .status-row .value.live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.5s infinite;
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 40px;
  position: relative;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--neon);
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.section-title span { color: var(--neon); }
.section-intro {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 780px;
  margin-bottom: 60px;
}

/* ===== SEO TEXT BLOCKS ===== */
.seo-block {
  background: linear-gradient(135deg, var(--panel) 0%, var(--bg-2) 100%);
  border-left: 3px solid var(--neon);
  padding: 40px 48px;
  margin: 24px 0;
  position: relative;
}
.seo-block h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 16px;
}
.seo-block h3 span { color: var(--neon); }
.seo-block p {
  color: var(--text-dim);
  margin-bottom: 14px;
  font-size: 16px;
}
.seo-block p strong { color: var(--text); font-weight: 700; }
.seo-block p:last-child { margin-bottom: 0; }

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.feature-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}
.feature-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--neon);
  margin-bottom: 16px;
  display: block;
}
.feature-card h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--panel);
  border-top: 1px solid var(--neon);
  border-bottom: 1px solid var(--neon);
  padding: 50px 40px;
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  display: block;
  line-height: 1;
}
.stat-item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 10px;
  display: block;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--neon); }
.faq-item summary {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--neon);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(0, 255, 136, 0.15) 0%, transparent 70%),
    var(--bg-2);
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--neon);
  border-bottom: 1px solid var(--neon);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '{{THEMA}}';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 280px;
  color: rgba(0, 255, 136, 0.04);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 24px;
}
.final-cta h2 span {
  color: var(--neon);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}
.final-cta p {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
footer p, footer a {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
footer a:hover { color: var(--neon); }
footer .bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ===== CAPTCHA ===== */
.captcha-wrap {
  margin: 24px 0 20px;
  max-width: 320px;
}
.captcha-box {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.captcha-box.verified { border-color: #4caf50; }
.captcha-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}
.captcha-checkbox:hover { border-color: #4a90e2; }
.captcha-checkbox.loading {
  border: 3px solid #e0e0e0;
  border-top-color: #4a90e2;
  border-radius: 50%;
  animation: captcha-spin 0.8s linear infinite;
  cursor: default;
}
@keyframes captcha-spin { to { transform: rotate(360deg); } }
.captcha-checkbox.checked {
  border-color: #4caf50;
  background: #fff;
  cursor: default;
}
.captcha-checkbox.checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 1px;
  width: 8px; height: 16px;
  border: solid #4caf50;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.captcha-label {
  flex: 1;
  color: #000;
  user-select: none;
}
.captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: #555;
  opacity: 0.7;
}
.captcha-logo-icon {
  width: 32px; height: 32px;
  background: conic-gradient(from 0deg, #4285f4, #34a853, #fbbc04, #ea4335, #4285f4);
  border-radius: 50%;
  position: relative;
}
.captcha-logo-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #f9f9f9;
  border-radius: 50%;
}
.captcha-logo-icon::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: #4285f4;
  border-radius: 50%;
  z-index: 1;
}
.captcha-error {
  color: #ff4444;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  margin-top: 8px;
  display: none;
}
.captcha-error.show { display: block; }

/* Honeypot — must be invisible to humans but present in DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}

.btn-primary.locked {
  display: none !important;
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE NAV TOGGLE ===== */
nav .nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--neon);
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1;
  padding: 0;
}
nav .nav-toggle:hover { border-color: var(--neon); }
nav .nav-links a.nav-cta {
  color: var(--neon);
  border: 1px solid var(--neon);
  padding: 6px 12px;
}
nav .nav-links a.nav-cta:hover { background: var(--neon); color: #000; }

@media (max-width: 900px) {
  nav {
    padding: 12px 16px;
    flex-wrap: wrap;
  }
  nav .nav-toggle { display: flex; }
  nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 12px;
    border-top: 1px solid var(--border);
  }
  nav.open .nav-links { display: flex; }
  nav .nav-links a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  nav .nav-links a.nav-cta {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 8px;
  }
  .hero { padding: 110px 18px 40px; }
  .hero-content { grid-template-columns: 1fr !important; gap: 40px; }
  .hero h1 { font-size: clamp(36px, 9vw, 58px) !important; }
  .hero .lead { font-size: 16px; }
  .hero-panel { max-width: 100% !important; }
  section { padding: 60px 18px !important; }
  .section-title { font-size: clamp(26px, 6vw, 38px) !important; }
  .features { grid-template-columns: 1fr !important; }
  .feature-card { padding: 28px 24px !important; }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px; padding: 40px 20px !important;
  }
  .stat-item .num { font-size: 36px !important; }
  .seo-block { padding: 28px 22px !important; }
  .seo-block h3 { font-size: 22px !important; }
  footer { padding: 60px 20px 20px !important; }
  footer .container { grid-template-columns: 1fr !important; gap: 30px !important; }
  .final-cta::before { font-size: 100px !important; }
  .final-cta h2 { font-size: clamp(30px, 7vw, 44px) !important; }
  .btn-primary {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
  .captcha-wrap, .captcha-box { max-width: 100%; }
}

@media (max-width: 480px) {
  nav .logo { font-size: 17px; }
  .hero { padding: 100px 14px 30px; }
  .hero-tag { font-size: 11px !important; }
  .stats-mini { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
  .stats-bar { grid-template-columns: 1fr !important; gap: 24px; }
  .section-label { font-size: 11px !important; }
  .feature-card .num { font-size: 28px !important; }
  .faq-item summary { font-size: 15px !important; padding: 18px 20px !important; }
  .faq-item p { padding: 0 20px 18px !important; font-size: 15px !important; }
}

/* ================================================================
   ACCESSIBILITY — Skip Link, Focus States, Reduced Motion
   ================================================================ */

/* Skip-Link: unsichtbar bis Fokus */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--neon);
  color: #000;
  padding: 12px 20px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

/* Sichtbare Fokus-Ringe für alle interaktiven Elemente */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
nav .nav-links a:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

/* Screen-Reader Only (unsichtbar aber für AT lesbar) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced Motion: alle Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .glitch::before, .glitch::after { display: none; }
  .timeline-item.now::before { animation: none; }
  body::before, body::after { display: none; } /* Scanlines aus */
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.gf-cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-2);
  border: 1px solid var(--neon);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.2);
  z-index: 9000;
  padding: 28px 32px;
  animation: gfcb-in 0.3s ease-out;
}
.gf-cookie-banner.gfcb-hiding { opacity: 0; transform: translateY(20px); transition: all 0.25s; }
@keyframes gfcb-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gfcb-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--neon);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  outline: none;
}
.gfcb-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.gfcb-link {
  color: var(--cyan);
  text-decoration: underline;
}
.gfcb-link:hover, .gfcb-link:focus { color: var(--neon); }

.gfcb-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}
.gfcb-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.gfcb-toggle input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--neon);
  flex-shrink: 0;
}
.gfcb-toggle input[disabled] { opacity: 0.6; cursor: not-allowed; }
.gfcb-toggle strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.gfcb-hint {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.gfcb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gfcb-btn {
  padding: 12px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
}
.gfcb-btn:hover, .gfcb-btn:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
.gfcb-btn-primary {
  border-color: var(--neon);
  color: var(--neon);
}
.gfcb-btn-primary:hover, .gfcb-btn-primary:focus-visible {
  background: var(--neon);
  color: #000;
  outline: 3px solid var(--cyan);
}
.gfcb-btn-accent {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}
.gfcb-btn-accent:hover, .gfcb-btn-accent:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
}

@media (max-width: 640px) {
  .gf-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px 20px; }
  .gfcb-title { font-size: 16px; }
  .gfcb-desc { font-size: 13px; }
  .gfcb-actions { flex-direction: column; }
  .gfcb-btn { width: 100%; text-align: center; }
}

/* ================================================================
   DATENSCHUTZ / IMPRESSUM — Readable Content Pages
   ================================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  color: var(--neon);
  margin-top: 42px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.legal-content h2::before {
  content: '// ';
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8em;
}
.legal-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: var(--cyan);
  margin-top: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.legal-content p, .legal-content li {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 16px;
}
.legal-content ul {
  padding-left: 24px;
  margin: 14px 0;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
}
.legal-content a:hover, .legal-content a:focus-visible { color: var(--neon); }
.legal-content .updated-date {
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  margin-bottom: 30px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 2px solid var(--cyan);
  display: inline-block;
}
