/* ============================================================
   FÜR DOOFE — Design-System (Serien-Look: Gold/Cream auf Dunkel)
   ============================================================ */
:root {
  --bg:      #0d0d10;
  --bg-2:    #15151b;
  --bg-3:    #1d1d25;
  --gold:    oklch(0.80 0.15 80);
  --gold-dim:oklch(0.66 0.13 78);
  --cream:   oklch(0.96 0.015 85);
  --muted:   oklch(0.72 0.015 85);
  --red:     oklch(0.65 0.22 25);
  --green:   oklch(0.80 0.19 145);
  --sky:     oklch(0.70 0.14 240);
  --line:    rgba(255,255,255,0.10);
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
  --radius: 18px;
  --maxw: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--bg); color: var(--cream);
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before { /* Vignette wie im Video */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,200,90,0.05) 0%, transparent 45%);
}
main { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--gold); color: #1a1408; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.08; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); margin-bottom: 12px; }
.gold { color: var(--gold); } .red { color: var(--red); } .green { color: var(--green); }
p + p { margin-top: 14px; }

/* ---------- NAV / HUD ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,16,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.logo { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); white-space: nowrap; }
.logo .fd { color: var(--gold); }
.nav-links { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.nav-links a { padding: 8px 13px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--cream); background: var(--bg-3); text-decoration: none; }
.nav-links a.active { color: var(--gold); background: var(--bg-3); }
/* Doofheits-Level HUD */
.hud { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--muted); white-space: nowrap; }
.hud .bar { width: 90px; height: 10px; border-radius: 5px; background: var(--bg-3);
  border: 1px solid var(--line); overflow: hidden; }
.hud .fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.6s cubic-bezier(.22,1,.36,1); }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; opacity: 0.35; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,16,0.3) 0%, rgba(13,13,16,0.85) 75%, var(--bg) 100%); }
.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(70px, 12vw, 150px) 22px clamp(50px, 8vw, 90px); }
.hero .kicker { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero p.sub { max-width: 620px; font-size: clamp(1rem, 2.2vw, 1.25rem); color: var(--muted); margin-top: 18px; }

/* ---------- BUTTONS & BADGES ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 14px; font-weight: 800; font-size: 1rem;
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
  cursor: pointer; transition: transform .15s, background .15s; font-family: var(--font-body); }
.btn:hover { background: rgba(230,180,80,0.12); transform: translateY(-2px); text-decoration: none; }
.btn.primary { background: var(--gold); color: #1a1408; }
.btn.primary:hover { background: oklch(0.85 0.15 82); }
.btn.danger { border-color: var(--red); color: var(--red); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.badge { display: inline-block; padding: 5px 13px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--muted); }
.badge.gold { border-color: var(--gold-dim); color: var(--gold); }
.badge.red  { border-color: var(--red); color: var(--red); }
.badge.green{ border-color: var(--green); color: var(--green); }

/* ---------- SECTIONS & CARDS ---------- */
section.block { padding: clamp(46px, 7vw, 80px) 0; }
section.block + section.block { border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.section-head .num { font-family: var(--font-mono); color: var(--gold); font-size: 0.85rem; letter-spacing: 0.3em; }

.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card.pad-lg { padding: 34px; }
.grid { display: grid; gap: 18px; }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Gag-Tag (wie im Video) */
.gag { display: inline-block; transform: rotate(-1.5deg);
  background: rgba(0,0,0,0.6); border: 3px solid var(--cream); border-radius: 14px;
  padding: 10px 20px; font-family: var(--font-display); font-size: 1.05rem; margin: 10px 0; }

/* Warn-Box (TDAC etc.) */
.warn { border: 2px solid var(--red); border-left-width: 10px; border-radius: var(--radius);
  background: rgba(190,60,45,0.09); padding: 24px 26px; margin: 22px 0; }
.warn .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.tip { border: 2px solid var(--green); border-left-width: 10px; border-radius: var(--radius);
  background: rgba(60,190,110,0.08); padding: 24px 26px; margin: 22px 0; }
.tip .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px; }

/* Fakten-Zeile */
.fact { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.fact:last-child { border-bottom: none; }
.fact .ico { flex: 0 0 auto; font-size: 1.3rem; line-height: 1.4; }
.fact b { color: var(--gold); }

/* ---------- POLAROIDS ---------- */
.polaroid { background: #f5f2ea; padding: 10px 10px 14px; border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.5); transform: rotate(-2deg); transition: transform .25s; }
.polaroid:nth-child(even) { transform: rotate(1.6deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 2; }
.polaroid img { border-radius: 3px; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption { font-family: "Caveat", "Comic Sans MS", cursive; color: #2c2418;
  font-size: 1.25rem; text-align: center; padding-top: 8px; line-height: 1.1; }
.ki-note { font-family: var(--font-mono); font-size: 0.62rem; color: #8a8272; text-align: center; }

/* ---------- VIDEO EMBEDS (lite) ---------- */
.yt { position: relative; aspect-ratio: 16/9; background: #000 center/cover no-repeat;
  border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--line); }
.yt.short { aspect-ratio: 9/16; }
.yt .play { position: absolute; inset: 0; display: grid; place-items: center; transition: background .2s; }
.yt .play::after { content: "▶"; width: 68px; height: 68px; border-radius: 50%;
  background: rgba(13,13,16,0.85); border: 3px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-size: 1.5rem; padding-left: 5px; transition: transform .2s; }
.yt:hover .play::after { transform: scale(1.12); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-title { margin-top: 10px; font-weight: 700; font-size: 0.95rem; line-height: 1.35; }
.yt-meta { color: var(--muted); font-size: 0.8rem; font-family: var(--font-mono); margin-top: 3px; }

/* ---------- TOOLS ---------- */
.tool { background: var(--bg-2); border: 1px solid var(--gold-dim); border-radius: var(--radius);
  padding: 28px; margin: 26px 0; position: relative; }
.tool::before { content: "🎮 INTERAKTIV"; position: absolute; top: -11px; left: 22px;
  background: var(--bg); padding: 0 10px; font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.25em; color: var(--gold); }
.tool h3 { color: var(--gold); }
.tool .result { margin-top: 18px; padding: 18px 20px; border-radius: 12px; background: var(--bg-3);
  border: 1px solid var(--line); min-height: 30px; font-size: 1.05rem; }
.tool .result b { color: var(--gold); }

/* Monats-Buttons (Reisezeit) */
.months { display: grid; grid-template-columns: repeat(auto-fit, minmax(74px, 1fr)); gap: 8px; margin-top: 14px; }
.months button { padding: 11px 6px; border-radius: 10px; background: var(--bg-3); color: var(--cream);
  border: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.85rem; cursor: pointer; transition: all .15s; }
.months button:hover { border-color: var(--gold); }
.months button.on { background: var(--gold); color: #1a1408; border-color: var(--gold); font-weight: 700; }

/* Slider & Inputs */
input[type="range"] { width: 100%; accent-color: var(--gold); height: 34px; }
input[type="number"], select {
  background: var(--bg-3); color: var(--cream); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 14px; font-size: 1rem; font-family: var(--font-body); width: 100%; }
.opt-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: 14px 0; }
.opt-row label { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--line); cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.opt-row label:has(input:checked) { border-color: var(--gold); background: rgba(230,180,80,0.10); }
.opt-row input { accent-color: var(--gold); }

/* Ampel */
.ampel { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-top: 16px; }
.ampel .zone { padding: 18px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--line); }
.ampel .zone .name { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 8px; }
.ampel .light { font-size: 1.6rem; }
.ampel .verdict { font-size: 0.9rem; color: var(--muted); margin-top: 6px; }

/* Checkliste */
.check { list-style: none; }
.check li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 4px; border-bottom: 1px dashed var(--line); }
.check input { margin-top: 5px; accent-color: var(--gold); transform: scale(1.3); cursor: pointer; }
.check label { cursor: pointer; }
.check li:has(input:checked) label { color: var(--muted); text-decoration: line-through; }
.progress { height: 12px; border-radius: 6px; background: var(--bg-3); border: 1px solid var(--line);
  overflow: hidden; margin: 14px 0; }
.progress .p-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width .4s; }

/* Tabelle */
.table-scroll { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 720px; }
th { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-align: left; padding: 14px 16px; border-bottom: 2px solid var(--gold-dim);
  cursor: pointer; user-select: none; white-space: nowrap; background: var(--bg-2); }
th:hover { color: var(--cream); }
td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
tr:hover td { background: rgba(255,255,255,0.025); }
td b { color: var(--gold); }

/* Insel-Card */
.insel { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; }
.insel .head { padding: 22px 24px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.insel .body { padding: 14px 24px 24px; flex: 1; }
.insel .stats { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.insel .verdict-line { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold);
  border-top: 1px dashed var(--line); margin-top: auto; padding: 14px 24px; }

/* FAQ */
details { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); margin-bottom: 10px; }
details summary { padding: 17px 20px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 46px; }
details summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; transition: transform .2s; }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details .a { padding: 0 20px 18px; color: var(--muted); }
details .a b { color: var(--cream); }

/* Quiz */
.quiz-q { margin: 22px 0; }
.quiz-opts { display: grid; gap: 10px; margin-top: 12px; }
.quiz-opts button { text-align: left; padding: 16px 18px; border-radius: 12px; background: var(--bg-3);
  color: var(--cream); border: 1px solid var(--line); font-size: 1rem; cursor: pointer; transition: all .15s; font-family: var(--font-body); }
.quiz-opts button:hover { border-color: var(--gold); transform: translateX(4px); }
.quiz-result { text-align: center; padding: 30px 20px; }
.quiz-result .type-name { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.6rem); color: var(--gold); margin: 12px 0; }

/* Achievement Toast */
#toasts { position: fixed; right: 18px; bottom: 18px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--bg-2); border: 2px solid var(--gold); border-radius: 14px; padding: 14px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.6); max-width: 320px;
  animation: toast-in .45s cubic-bezier(.22,1.4,.36,1) both; }
.toast .t1 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.toast .t2 { font-family: var(--font-display); font-size: 1rem; margin-top: 4px; }
.toast .t3 { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.toast.out { animation: toast-out .3s ease-in both; }
@keyframes toast-in { from { transform: translateX(120%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toast-out { to { transform: translateX(120%); opacity: 0; } }

/* Schärfe-Simulator */
#chili-stage { font-size: clamp(2.4rem, 8vw, 4rem); text-align: center; padding: 16px 0; transition: transform .1s; }
.shake { animation: shake .4s linear infinite; }
@keyframes shake { 0%,100% { transform: translate(0); } 25% { transform: translate(-6px, 3px) rotate(-1deg); } 75% { transform: translate(6px, -3px) rotate(1deg); } }

/* Thailand-Karte (echte OSM-Karte, statisch) */
.tmap-grid { display: grid; grid-template-columns: minmax(260px, 400px) 1fr; gap: 24px; align-items: start; }
.tmap-map { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #0e141c; }
.tmap-map > img { width: 100%; display: block;
  filter: invert(1) hue-rotate(195deg) brightness(0.94) saturate(0.4) contrast(0.95); }
#tk-zonelayer, #tk-markerlayer { position: absolute; inset: 0; }
#tk-zonelayer { pointer-events: none; }
.tk-zone { position: absolute; transition: background .35s; }
.tk-m { position: absolute; transform: translate(-10.5px, -50%); display: flex; align-items: center; gap: 7px;
  background: none; border: none; padding: 4px; cursor: pointer; font-family: var(--font-body); }
.tk-m .tk-dot { width: 13px; height: 13px; border-radius: 50%; background: #e6b450;
  border: 2px solid #0d0d10; box-shadow: 0 0 0 1.5px rgba(255,255,255,0.55), 0 2px 6px rgba(0,0,0,0.6);
  flex: 0 0 auto; transition: transform .15s; }
.tk-m:hover .tk-dot { transform: scale(1.3); }
.tk-m.on .tk-dot { transform: scale(1.45); box-shadow: 0 0 0 2.5px var(--gold), 0 2px 8px rgba(0,0,0,0.7); }
.tk-lbl { color: var(--cream); font-size: 12.5px; font-weight: 700; white-space: nowrap;
  text-shadow: 0 1px 0 rgba(13,13,16,0.9), 0 0 6px rgba(13,13,16,0.9), 0 0 2px rgba(13,13,16,1); }
.tk-m.on .tk-lbl { color: var(--gold); }
.tk-m.left { flex-direction: row-reverse; transform: translate(calc(-100% + 10.5px), -50%); }
.tmap-osm { position: absolute; right: 6px; bottom: 4px; font-family: var(--font-mono); font-size: 0.58rem;
  color: rgba(255,255,255,0.55); background: rgba(13,13,16,0.55); padding: 2px 7px; border-radius: 6px; }
.tmap-osm:hover { color: var(--cream); text-decoration: none; }
/* Ampel in der Karten-Seitenspalte (kompakt) */
.tmap-side .ampel { grid-template-columns: 1fr; gap: 8px; margin-top: 0; }
.tmap-side .zone { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 11px 14px; }
.tmap-side .zone > div:nth-child(2) { display: none; }
.tmap-side .zone .name { flex: 1; margin-bottom: 0; font-size: 0.88rem; }
.tmap-side .zone .light { font-size: 1.25rem; }
.tmap-side .zone .verdict { flex-basis: 100%; margin-top: 2px; font-size: 0.82rem; }
.tmap-side #amp-extra { margin: 10px 0 14px !important; font-size: 0.9rem; }

/* Live-Uhren */
.uhren { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 8px 0 6px; }
.uhr { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; text-align: center; }
.uhr .u-lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.uhr .u-zeit { font-family: var(--font-mono); font-weight: 700; font-size: 1.55rem; color: var(--gold); margin-top: 6px; font-variant-numeric: tabular-nums; }
.uhr-diff { text-align: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }

/* Region-Chips (Preisliste) */
.regio { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.regio label { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line); cursor: pointer; font-weight: 700; font-size: 0.92rem; }
.regio label:has(input:checked) { border-color: var(--gold); background: rgba(230,180,80,0.12); color: var(--gold); }
.regio input { accent-color: var(--gold); }

/* Vokabel-Tabellen */
.vokab td:first-child { font-family: var(--font-mono); font-weight: 700; color: var(--gold); white-space: nowrap; }
.vokab .thai { font-size: 1.15rem; white-space: nowrap; }
.say { background: var(--bg-3); border: 1px solid var(--line); border-radius: 9px; cursor: pointer;
  padding: 3px 9px; margin-right: 10px; font-size: 0.95rem; line-height: 1; vertical-align: middle;
  transition: border-color .15s, transform .1s; }
.say:hover { border-color: var(--gold); transform: scale(1.08); }
.say.on { border-color: var(--gold); background: rgba(230,180,80,0.18); animation: say-pulse 0.9s ease-in-out infinite; }
@keyframes say-pulse { 50% { transform: scale(1.12); } }
.tmap-monate { display: grid; grid-template-columns: repeat(auto-fit, minmax(52px, 1fr)); gap: 6px; margin-bottom: 14px; }
.tmap-monate button { padding: 9px 4px; border-radius: 9px; background: var(--bg-3); color: var(--cream);
  border: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.78rem; cursor: pointer; }
.tmap-monate button:hover { border-color: var(--gold); }
.tmap-monate button.on { background: var(--gold); color: #1a1408; border-color: var(--gold); font-weight: 700; }
.tmap-panel { background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px; padding: 20px; min-height: 180px; }
.tmap-hint, .tmap-hintsm { color: var(--muted); }
.tmap-hintsm { font-size: 0.85rem; font-family: var(--font-mono); margin-bottom: 10px; }
.tmap-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.tmap-zone { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.tmap-ampel { margin-top: 10px; }
.tmap-blurb { margin-top: 10px; }
.tmap-note { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 760px) { .tmap-grid { grid-template-columns: 1fr; } }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 44px 0 60px; margin-top: 60px; color: var(--muted); font-size: 0.9rem; }
footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
footer h4 { font-family: var(--font-display); color: var(--cream); font-size: 0.95rem; margin-bottom: 12px; }
footer ul { list-style: none; } footer li { padding: 4px 0; }
.legal-note { margin-top: 30px; padding-top: 20px; border-top: 1px dashed var(--line); font-size: 0.78rem; font-family: var(--font-mono); }

@media (max-width: 720px) {
  .nav-links { order: 3; width: 100%; justify-content: flex-start; }
  .hud { margin-left: auto; }
}
