/* ============================================
   MEETINGPLACE — FiveM RP Server
   Farbsystem: Schwarz / Grau / Orange / Blau
   ============================================ */

:root {
  --black: #0a0a0c;
  --gray-900: #141519;
  --gray-800: #1c1e23;
  --gray-700: #2a2c33;
  --gray-500: #565a63;
  --gray-300: #9498a1;
  --white: #f2f3f5;

  --orange: #ff7a1a;
  --orange-dim: #ff7a1a26;
  --blue: #2f7dff;
  --blue-dim: #2f7dff26;

  --font-display: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius: 10px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

::selection { background: var(--orange); color: var(--black); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- fixierter Hintergrund ---------- */
.bg-fixed {
  position: fixed;
  inset: -60px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-fixed svg,
.bg-fixed-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}
.parallax-layer { will-change: transform; }

.map-grid {
  position: fixed;
  inset: -60px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148,152,161,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,152,161,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 92%);
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Leichte Staffelung innerhalb von Grids */
.feature-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.feature-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.feature-grid .reveal:nth-child(5) { transition-delay: 0.06s; }
.feature-grid .reveal:nth-child(6) { transition-delay: 0.12s; }
.news-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.news-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.status-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.status-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.status-grid .reveal:nth-child(4) { transition-delay: 0.15s; }

/* ---------- hero mouse-parallax ---------- */
.hero-radar { transition: transform 0.15s ease-out; }

/* ---------- shared ---------- */
.accent-orange { color: var(--orange); }
.accent-blue { color: var(--blue); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 32px auto;
  padding: 64px 48px;
  background: rgba(10,10,12,0.84);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
}
.section-alt { background: rgba(20,21,25,0.88); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn svg { transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-orange {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 0 0 var(--orange-dim);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(255,122,26,0.55);
}

.btn-outline {
  border-color: var(--gray-700);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-small { padding: 9px 18px; font-size: 13px; }
.btn-large { padding: 17px 34px; font-size: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.link-arrow svg { transition: transform 0.18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-800);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo-mark { color: var(--orange); display: flex; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--gray-700);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray-300);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(47,125,255,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(47,125,255,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(47,125,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,125,255,0); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 56vh;
  background: rgba(10,10,12,0.84);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 56px 48px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-sub {
  max-width: 480px;
  color: var(--gray-300);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-fallback-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 26px;
}
.hero-fallback-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.hero-fallback-note a:hover { color: var(--orange); }

.hero-coords {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.dot-sep { color: var(--gray-700); }

/* ---------- radar visual ---------- */
.hero-radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero-radar { max-width: 300px; margin-top: 10px; }
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
}
.ring-1 { width: 32%; height: 32%; }
.ring-2 { width: 62%; height: 62%; }
.ring-3 { width: 92%; height: 92%; border-color: var(--gray-800); }

.radar-sweep {
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(47,125,255,0.32), transparent 28%);
  animation: sweep 4.5s linear infinite;
  mask-image: radial-gradient(circle, transparent 15%, black 16%);
}
@keyframes sweep { to { transform: rotate(360deg); } }

.radar-pin {
  position: relative;
  z-index: 2;
  animation: float-pin 3s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(255,122,26,0.55));
}
@keyframes float-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.radar-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  line-height: 1.4;
  background: rgba(10,10,12,0.7);
  padding: 6px 9px;
  border: 1px solid var(--gray-800);
  border-radius: 6px;
}
.radar-label b { color: var(--white); font-weight: 600; }
.label-1 { top: 4%; right: 2%; }
.label-2 { bottom: 14%; left: -2%; }
.label-3 { bottom: 2%; right: 12%; }

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}
.scroll-cue span {
  width: 1px;
  height: 22px;
  background: linear-gradient(var(--orange), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-800);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--black);
  padding: 34px 28px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--gray-900); }
.feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  margin-bottom: 20px;
}
.icon-orange { background: var(--orange-dim); color: var(--orange); }
.icon-blue { background: var(--blue-dim); color: var(--blue); }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.feature-card p { color: var(--gray-300); font-size: 14.5px; line-height: 1.6; }

/* ---------- slideshow ---------- */
.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-800);
  outline: none;
}
.slides-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 800 / 450;
  object-fit: cover;
}
.slide figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(10,10,12,0.88), transparent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  background: rgba(10,10,12,0.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.slide-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(10,10,12,0.85); }
.slide-btn.prev { left: 16px; }
.slide-btn.next { right: 16px; }

.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(242,243,245,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.dot.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* ---------- news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.news-card:hover { border-color: var(--gray-700); transform: translateY(-3px); }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.news-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tag-orange { background: var(--orange-dim); color: var(--orange); }
.tag-blue { background: var(--blue-dim); color: var(--blue); }
.news-date { font-family: var(--font-mono); font-size: 11.5px; color: var(--gray-500); }
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 10px;
}
.news-card p { color: var(--gray-300); font-size: 14px; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.news-card .link-arrow { margin-top: 0; }

/* ---------- page header (Unterseiten) ---------- */
.page-header {
  padding-top: 20px;
}
.page-header .section-title { margin-bottom: 16px; }
.page-intro {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 8px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--gray-300); transition: color 0.15s ease; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-700); }

/* ---------- keybinds (Tastenbelegung) ---------- */
.keybind-category { margin-bottom: 44px; }
.keybind-category:last-child { margin-bottom: 0; }
.keybind-category h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-800);
}
.keybind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.keybind-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 10px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-bottom-width: 2px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.keybind-row span:last-child { color: var(--gray-300); font-size: 14px; }

/* ---------- Gesetze ---------- */
.law-category { margin-bottom: 40px; }
.law-category:last-child { margin-bottom: 0; }
.law-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.law-list { display: flex; flex-direction: column; gap: 1px; background: var(--gray-800); border: 1px solid var(--gray-800); border-radius: 10px; overflow: hidden; }
.law-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--black);
  padding: 16px 18px;
}
.law-num { font-family: var(--font-mono); font-size: 13px; color: var(--gray-500); }
.law-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--white); }
.law-item p { font-size: 13px; color: var(--gray-500); margin-top: 3px; }
.law-penalty {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--blue);
  text-align: right;
  white-space: nowrap;
}

/* ---------- FAQ Akkordeon ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.accordion-header .chevron {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-header .chevron { transform: rotate(180deg); }
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel-inner { overflow: hidden; }
.accordion-panel p {
  color: var(--gray-300);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 22px 22px;
}

/* ---------- Anleitungen ---------- */
.guide-card { margin-bottom: 40px; }
.guide-card:last-child { margin-bottom: 0; }
.guide-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.guide-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9px;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
}
.guide-steps { display: flex; flex-direction: column; gap: 4px; margin-left: 54px; }
.guide-step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-800);
}
.guide-step:first-child { border-top: none; }
.guide-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  min-width: 22px;
}
.guide-step h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.guide-step p { font-size: 13.5px; color: var(--gray-300); line-height: 1.6; }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 46px;
}
.step { position: relative; padding-top: 14px; border-top: 1px solid var(--gray-700); }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step p { color: var(--gray-300); font-size: 14px; line-height: 1.6; }

.ip-box {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 9px 9px 9px 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  color: var(--white);
  padding: 7px 11px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.copy-btn:hover { border-color: var(--orange); color: var(--orange); }
.copy-btn.copied { border-color: var(--blue); color: var(--blue); }

/* ---------- status ---------- */
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.status-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}
.data-badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
}
.badge-live {
  background: var(--blue-dim);
  color: var(--blue);
}
.badge-live::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 4px;
  animation: pulse-dot 2s infinite;
}
.badge-demo {
  background: rgba(148,152,161,0.12);
  color: var(--gray-500);
}
.status-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--orange);
}
.status-value .status-suffix { font-size: 18px; color: var(--gray-500); font-weight: 600; margin-left: 2px; }
.status-note { margin-top: 22px; color: var(--gray-500); font-size: 13px; font-family: var(--font-mono); }

/* ---------- rules ---------- */
.rules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
.rule-item { display: flex; gap: 18px; }
.rule-icon {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rule-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rule-item p { color: var(--gray-300); font-size: 14px; line-height: 1.6; }

/* ---------- cta ---------- */
.cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 48px;
  max-width: 780px;
  margin: 32px auto 60px;
  background: rgba(10,10,12,0.84);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 50px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta p { color: var(--gray-300); margin-bottom: 34px; font-size: 16px; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 56px 48px 28px;
  background: rgba(10,10,12,0.88);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--gray-500); font-size: 13.5px; margin-top: 14px; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col a { display: block; color: var(--gray-300); font-size: 14px; margin-bottom: 11px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gray-500);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .status-pill span:last-child { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding: 36px 28px; }

  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-list { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 28px; margin: 20px auto; }
  .keybind-grid { grid-template-columns: 1fr; }
  .law-item { grid-template-columns: 40px 1fr; }
  .law-penalty { grid-column: 2; text-align: left; }
  .guide-steps { margin-left: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 14px 20px; }
  .section, .hero, .cta, .footer { padding-left: 20px; padding-right: 20px; }
  .steps { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .slide-btn { width: 36px; height: 36px; }
  .slide-btn.prev { left: 10px; }
  .slide-btn.next { right: 10px; }
  .slide figcaption { font-size: 14px; padding: 14px 16px; }
}

/* mobile nav overlay */
.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
  padding: 24px 32px;
  gap: 20px;
}

/* ---------- Rechtstexte & Unterseiten ---------- */
.legal-page {
  padding-top: 140px;
  min-height: 80vh;
}

.legal-content {
  background: rgba(22, 22, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.legal-content h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 122, 26, 0.3);
  padding-bottom: 0.4rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--orange-500, #ff7a1a);
  font-size: 1.1rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.legal-content p, 
.legal-content ul {
  color: #a0a0aa;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--orange-500, #ff7a1a);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #fff;
}

/* ---------- Feature-Page Styling ---------- */
.features-page {
  padding-top: 130px;
  padding-bottom: 80px;
}

.features-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.feature-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.cat-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0aa;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cat-pill:hover {
  background: var(--orange-500, #ff7a1a);
  border-color: var(--orange-500, #ff7a1a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

.feature-group {
  margin-bottom: 4.5rem;
}

.group-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: rgba(22, 22, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 26, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 122, 26, 0.15);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: #a0a0aa;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-500, #ff7a1a);
  background: rgba(255, 122, 26, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 122, 26, 0.2);
}

/* Call to Action Box unten */
.features-cta {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15) 0%, rgba(18, 18, 20, 0.8) 100%);
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.features-cta h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.features-cta p {
  color: #a0a0aa;
  margin-bottom: 1.8rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Active Nav State */
.nav-links a.active {
  color: var(--orange-500, #ff7a1a);
}