/* ============================================================
   VIKINGARD — Nordschmiede Design
   Palette: Nachtblau-Schwarz, Eisen, Runensilber, Glut-Gold
   ============================================================ */

:root {
  --bg:        #0b0e13;   /* Nachtschwarz mit Blaustich */
  --bg-deep:   #07090d;
  --iron:      #151a22;   /* Panels / Karten */
  --iron-edge: #262e3a;   /* Panel-Kanten */
  --silver:    #d9dee6;   /* Haupttext */
  --mist:      #8a93a1;   /* Nebentext */
  --ember:     #e39a3b;   /* Glut-Gold Akzent */
  --ember-hot: #f2b45c;
  --blood:     #a8352f;   /* sparsam: PVP / Hinweise */
  --online:    #58b368;

  --font-display: 'Cinzel', serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --maxw: 1120px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--ember-hot); }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--iron-edge);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--iron-edge);
  box-shadow: 0 0 12px rgba(227, 154, 59, 0.25);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  background: linear-gradient(180deg, #f5f7fa 0%, #b9c2cf 45%, #6f7a8a 55%, #e6ebf2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(227, 154, 59, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--iron-edge);
  background: var(--iron);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.discord-link svg { width: 22px; height: 22px; fill: #7d8aa0; transition: fill 0.2s; }
.discord-link:hover {
  border-color: #5865f2;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}
.discord-link:hover svg { fill: #5865f2; }

.lang-switch {
  display: flex;
  border: 1px solid var(--iron-edge);
  border-radius: 8px;
  overflow: hidden;
  background: var(--iron);
}
.lang-switch button {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 9px 12px;
  border: none;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-switch button.active {
  background: var(--ember);
  color: #14100a;
  font-weight: 700;
}
.lang-switch button:not(.active):hover { color: var(--silver); }

/* Burger */
.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--iron-edge);
  border-radius: 8px;
  background: var(--iron);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger:hover { border-color: var(--ember); }
.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); }

/* Slide-in Navigation */
.nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-deep);
  border-left: 1px solid var(--iron-edge);
  z-index: 200;
  padding: 96px 28px 28px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.nav-panel.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.6); }

.nav-panel a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  padding: 14px 4px;
  border-bottom: 1px solid var(--iron-edge);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-panel a:hover { color: var(--ember); padding-left: 12px; }
.nav-panel a.current { color: var(--ember); }
.nav-panel a.current::before { content: "᛫ "; }

.nav-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--iron-edge);
  border-radius: 8px;
  background: var(--iron);
  color: var(--silver);
  font-size: 1.1rem;
  cursor: pointer;
}
.nav-close:hover { border-color: var(--ember); color: var(--ember); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--iron-edge);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(227,154,59,0.18), transparent 60%),
    linear-gradient(180deg, rgba(7,9,13,0.55) 0%, rgba(7,9,13,0.85) 70%, var(--bg) 100%),
    url("../assets/hero.jpg") center 22% / cover no-repeat;
  filter: saturate(0.9);
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 110px 24px 90px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #c3ccd9 40%, #7c8798 55%, #eef2f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.8));
}
.hero p {
  max-width: 640px;
  margin: 20px auto 0;
  color: #c4cad4;
  font-size: 1.12rem;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Kleiner Hero für Unterseiten */
.hero.hero-sub .hero-inner { padding: 70px 24px 56px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--ember-hot), var(--ember));
  color: #17110a;
  box-shadow: 0 4px 20px rgba(227,154,59,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,154,59,0.5); color: #17110a; }
.btn-ghost {
  background: rgba(21,26,34,0.7);
  border-color: var(--iron-edge);
  color: var(--silver);
}
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.btn-discord {
  background: #5865f2;
  color: #ffffff;
}
.btn-discord:hover { background: #6b76f5; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,0.4); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Sektionen ---------- */

main { flex: 1; }

.section { padding: 72px 0; }
.section-alt { background: var(--bg-deep); border-top: 1px solid var(--iron-edge); border-bottom: 1px solid var(--iron-edge); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--silver);
}
.section-head p { color: var(--mist); margin-top: 14px; }

/* Runen-Trenner — Signatur-Element */
.rune-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 22px;
  color: var(--ember);
  font-size: 1.05rem;
  letter-spacing: 0.5em;
  user-select: none;
}
.rune-divider::before,
.rune-divider::after {
  content: "";
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--ember));
}
.rune-divider::after { background: linear-gradient(90deg, var(--ember), transparent); }

/* ---------- Karten / Grids ---------- */

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--iron);
  border: 1px solid var(--iron-edge);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,154,59,0.6), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(227,154,59,0.4); box-shadow: 0 14px 34px rgba(0,0,0,0.45); }
.card:hover::before { opacity: 1; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--silver);
}
.card p { color: var(--mist); font-size: 0.98rem; }
.card .card-icon { font-size: 1.8rem; margin-bottom: 14px; }

/* ---------- Bild-Platzhalter ---------- */

.img-placeholder {
  border: 2px dashed var(--iron-edge);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px), var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 260px;
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.img-placeholder strong { color: var(--silver); font-size: 1rem; }

/* ---------- Text + Bild Split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.split p { color: var(--mist); margin-bottom: 14px; }
.split ul { list-style: none; margin-top: 10px; }
.split ul li { padding: 7px 0 7px 28px; position: relative; color: var(--silver); }
.split ul li::before { content: "ᛝ"; position: absolute; left: 0; color: var(--ember); }

/* ---------- StatusBot Seite ---------- */

.bot-shot {
  border: 1px solid var(--iron-edge);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--iron-edge);
  color: var(--silver);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fi { flex-shrink: 0; }

/* Preistabellen */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }
.price-card {
  background: var(--iron);
  border: 1px solid var(--iron-edge);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  position: relative;
}
.price-card.premium {
  border-color: rgba(227,154,59,0.55);
  box-shadow: 0 0 40px rgba(227,154,59,0.12);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--ember-hot), var(--ember));
  color: #17110a;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.price {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--silver);
  margin: 14px 0 4px;
}
.price small { font-size: 0.95rem; color: var(--mist); font-weight: 400; }
.price-interval {
  font-family: var(--font-mono);
  color: var(--ember);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.price-card ul { list-style: none; text-align: left; margin: 22px 0 28px; }
.price-card ul li { padding: 8px 0 8px 26px; position: relative; color: var(--mist); font-size: 0.95rem; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--online); font-weight: 700; }
.price-card ul li.no::before { content: "—"; color: var(--iron-edge); }

/* ---------- Spenden ---------- */

.donate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.donate-card {
  background: var(--iron);
  border: 1px solid var(--iron-edge);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.donate-card:hover { transform: translateY(-4px); border-color: rgba(227,154,59,0.4); }
.donate-amount {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ember);
  margin: 10px 0 6px;
}
.donate-card h3 { font-family: var(--font-display); letter-spacing: 0.08em; font-size: 1.1rem; }
.donate-card p { color: var(--mist); font-size: 0.92rem; margin: 12px 0 22px; }

/* ---------- CTA-Band ---------- */

.cta-band {
  text-align: center;
  padding: 64px 24px;
  background:
    radial-gradient(ellipse at 50% 130%, rgba(227,154,59,0.16), transparent 65%),
    var(--bg-deep);
  border-top: 1px solid var(--iron-edge);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.cta-band p { color: var(--mist); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--iron-edge);
  background: var(--bg-deep);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--mist);
}
.footer-inner .sep { color: var(--iron-edge); }
.footer-inner a { display: inline-flex; align-items: center; gap: 7px; color: var(--mist); }
.footer-inner a:hover { color: var(--ember); }
.footer-inner a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: var(--silver);
}

/* ---------- Scroll-Reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3, .donate-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .donate-grid, .pricing { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.1rem; letter-spacing: 0.1em; }
  .brand-emblem { width: 40px; height: 40px; }
  .header-inner { height: 64px; gap: 10px; }
  .lang-switch button { padding: 8px 10px; }
  .hero-inner { padding: 80px 20px 64px; }
  .section { padding: 52px 0; }
}

/* ---------- Discord-Embed Mockup (Bots-Seite) ---------- */

.discord-mock {
  background: #313338;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid #1e1f22;
  font-family: var(--font-body);
  max-width: 460px;
  margin: 0 auto;
}
.dm-embed {
  background: #2b2d31;
  border-left: 4px solid var(--online);
  border-radius: 6px;
  padding: 16px 18px;
}
.dm-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #f2f3f5;
  margin-bottom: 6px;
}
.dm-summary {
  color: #b5bac1;
  font-size: 0.9rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #3f4147;
  margin-bottom: 14px;
}
.dm-summary strong { color: #f2f3f5; }
.dm-server { margin-bottom: 14px; }
.dm-server:last-child { margin-bottom: 0; }
.dm-server-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #f2f3f5;
}
.dm-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 8px rgba(88,179,104,0.6);
  flex-shrink: 0;
}
.dm-server-meta {
  margin: 6px 0 0 5px;
  padding-left: 14px;
  border-left: 2px solid #3f4147;
  color: #b5bac1;
  font-size: 0.86rem;
  line-height: 1.7;
}
.dm-server-meta strong { color: #f2f3f5; }
.dm-footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #3f4147;
  color: #949ba4;
  font-size: 0.78rem;
}
.dm-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--online);
  background: rgba(88,179,104,0.1);
  border: 1px solid rgba(88,179,104,0.35);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.dm-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--online);
  animation: dm-pulse 1.6s infinite;
}
@keyframes dm-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(88,179,104,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(88,179,104,0); }
}

/* Discord-Mockup Variante: Bot-Vorstellung */
.dm-embed.dm-intro { border-left-color: #5865f2; }
.dm-msg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.dm-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.dm-bot-name { font-weight: 700; color: #f2f3f5; font-size: 0.95rem; }
.dm-app-badge {
  background: #5865f2;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
  padding: 2px 5px;
  vertical-align: middle;
  margin-left: 6px;
}
.dm-time { color: #949ba4; font-size: 0.72rem; }
.dm-text { color: #dbdee1; font-size: 0.9rem; line-height: 1.65; }
.dm-text strong { color: #f2f3f5; }
.dm-feat { margin: 12px 0; }
.dm-feat div { padding: 2px 0; color: #dbdee1; font-size: 0.88rem; }
.dm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #4e5058;
  color: #f2f3f5;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 8px 14px;
  user-select: none;
}

/* ---------- Befehlsliste (Bot-Seiten) ---------- */

.cmd-table { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cmd-row {
  display: grid;
  grid-template-columns: minmax(210px, 300px) 1fr;
  gap: 18px;
  align-items: center;
  background: var(--iron);
  border: 1px solid var(--iron-edge);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.cmd-row:hover { border-color: rgba(227,154,59,0.4); transform: translateX(3px); }
.cmd-code {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ember);
  background: var(--bg-deep);
  border: 1px solid var(--iron-edge);
  border-radius: 6px;
  padding: 8px 12px;
  display: block;
  word-break: break-word;
}
.cmd-desc { color: var(--mist); font-size: 0.96rem; }
.cmd-desc .perm {
  display: inline-block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #8a93a1;
  border: 1px solid var(--iron-edge);
  border-radius: 4px;
  padding: 1px 7px;
}
.cmd-group-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--ember);
  margin: 28px auto 4px;
  max-width: 860px;
  padding-left: 4px;
}
.cmd-group-title:first-child { margin-top: 0; }

/* ---------- Nav-Dropdown (Unterpunkte) ---------- */
.nav-group { border-bottom: 1px solid var(--iron-edge); }
.nav-group > a { border-bottom: none; }
.nav-sub {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}
.nav-sub a {
  font-family: var(--font-body);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--mist);
  padding: 10px 4px;
  border-bottom: none;
}
.nav-sub a::before { content: "▸ "; color: var(--ember); }
.nav-sub a:hover { color: var(--ember); padding-left: 10px; }
.nav-sub a.current { color: var(--ember); }

/* Status-Badge für "in Entwicklung" Bots */
.wip-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(227,154,59,0.5);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .cmd-row { grid-template-columns: 1fr; gap: 10px; }
}
