/* Furability — shared styles for the landing page, the link gate and the 404 page.
   Calm by design: no animation, no autoplay, high contrast, large tap targets. */

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-400.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/atkinson-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/plexmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/plexmono-500.woff2") format("woff2");
}
/* American Text: the poster's title font. Served as the original, unmodified file (see fonts/AmericanText-LICENSE.txt). */
@font-face {
  font-family: "American Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/AmericanText.ttf") format("truetype");
}

:root {
  --blue-900: #0f3566;
  --blue-800: #123f78;
  --blue-700: #164e8c;
  --blue-600: #1b5fa6;
  --gold: #ffd100;
  --gold-soft: #ffe366;
  --orange: #f08a2e;
  --ink: #111408;
  --paper: #fffdf3;
  --text: #f8fafc;
  --text-soft: #d9e6f5;
  --card: rgba(6, 18, 42, 0.55);
  --card-line: rgba(255, 209, 0, 0.35);
  --radius: 14px;
  --font-body: "Atkinson Hyperlegible", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --font-display: "American Text", "Old English Text MT", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--blue-800);
  background-image: linear-gradient(160deg, var(--blue-600) 0%, var(--blue-700) 45%, var(--blue-800) 80%, var(--blue-900) 100%);
  background-attachment: fixed;
}

/* Bavarian lozenge ribbon across the top, with a gold rule under it. */
body::before {
  content: "";
  display: block;
  height: 38px;
  background: var(--blue-600) url("bavaria-band.svg") center top repeat-x;
  border-bottom: 6px solid var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: 0;
}
.skip-link:focus {
  top: 16px;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero {
  padding-top: 40px;
  padding-bottom: 8px;
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.tagline {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}
.tagline a {
  color: inherit;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 28px 0 8px;
  align-items: start;
}
@media (min-width: 900px) {
  .layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 44px;
  }
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 2px solid var(--card-line);
  border-radius: var(--radius);
  padding: 24px;
}
.card + .card {
  margin-top: 24px;
}

h2 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--gold);
}

p {
  margin: 0 0 14px;
}
p:last-child {
  margin-bottom: 0;
}

.facts {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 1.05rem;
}
.facts li {
  display: grid;
  grid-template-columns: 5.2em 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.facts li:first-child {
  border-top: 0;
  padding-top: 0;
}
.facts li:last-child {
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .facts li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .card {
    padding: 20px 18px;
  }
}
.facts .k {
  color: var(--gold-soft);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding-top: 0.2em;
}
.facts .v strong {
  font-weight: 500;
  color: #fff;
}
.facts .note {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.soft {
  color: var(--text-soft);
}

/* ---------- Hosts ---------- */

h3 {
  margin: 22px 0 12px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--gold);
}

.hosts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.host {
  margin: 0;
  text-align: center;
  font-weight: 700;
}
.host img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
/* Thin white sticker edge, so dark artwork does not vanish into the dark card. */
.host img.outlined {
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}
.host figcaption {
  margin-top: 8px;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  font: 700 1.05rem/1.2 var(--font-body);
  text-decoration: none;
  border-radius: 0;
  border: 2px solid #000;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 4px 4px 0 #000;
}
.btn-primary:hover {
  background: #ffe04a;
  color: var(--ink);
}
.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

/* ---------- Poster ---------- */

.poster {
  margin: 0;
}
.poster a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
  background: var(--blue-800);
}
.poster figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
  text-align: center;
}

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

.foot {
  margin-top: 44px;
  padding-top: 26px;
  padding-bottom: 40px;
  border-top: 2px solid rgba(255, 209, 0, 0.3);
  font-size: 1rem;
  color: var(--text-soft);
}
.foot p {
  margin: 0 0 8px;
}

/* ---------- Link gate (/telegram etc.) ---------- */

.gate {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
}
.gate .brand {
  font-size: clamp(2.8rem, 9vw, 4.4rem);
}
.gate .brand a {
  color: inherit;
  text-decoration: none;
}
.gate .card {
  margin-top: 24px;
}
.gate h1.title {
  margin: 0 0 10px;
  font: 700 1.6rem/1.25 var(--font-body);
  color: var(--gold);
}

.ask {
  margin: 18px 0 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.ask .target {
  display: inline-block;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 6px;
  padding: 0;
  border: 0;
}
.choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px 8px;
  font: 700 1.1rem/1.2 var(--font-body);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
}
.choice:hover {
  background: rgba(0, 0, 0, 0.62);
}
@media (max-width: 480px) {
  .choices {
    gap: 8px;
  }
  .choice {
    min-height: 64px;
    padding: 10px 4px;
    font-size: 1rem;
  }
}
.choice[disabled] {
  opacity: 0.55;
  cursor: default;
}

.status {
  min-height: 1.6em;
  margin: 14px 0 0;
  font-size: 1rem;
  color: var(--text-soft);
}

.msg {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid var(--orange);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
}

.turnstile-slot {
  margin: 16px 0 4px;
  min-height: 65px;
}

/* Honeypot: parked off-screen; real people never see or reach it. */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion: no-preference) {
  .btn,
  .choice {
    transition: background-color 0.12s linear;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }
  body::before {
    display: none;
  }
  *,
  *::before,
  *::after {
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .card {
    background: none;
    border-color: #000;
    break-inside: avoid;
  }
  .actions,
  .skip-link {
    display: none;
  }
}
