/* ==========================================================================
   bar!kád — globális stylesheet
   Sötét hacker / terminál vibe. Egy fájl. Statikus oldal. FTP-zhető.
   Folytatás a teaser oldal után.
   ========================================================================== */

/* Fonts ------------------------------------------------------------------- */
@font-face {
  font-family: "Rockwell Extra Bold";
  src: url("../fonts/RockwellExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Tokens ------------------------------------------------------------------ */
:root {
  --bg:           #07080a;
  --bg-2:         #0b0d10;
  --bg-3:         #0f1115;
  --ink:          #d7d2c8;
  --ink-mid:      #9b958a;
  --ink-dim:      #6b6960;
  --ink-faint:    #3a3934;
  --rule:         rgba(215, 210, 200, 0.10);
  --rule-soft:    rgba(215, 210, 200, 0.05);
  --accent:       #ff2b2b;
  --accent-2:     #ff6a3d;
  --accent-glow:  rgba(255, 50, 50, 0.45);
  --grid-line:    rgba(255, 60, 60, 0.045);

  --slab:   "Rockwell Extra Bold", "Rockwell", Georgia, "Times New Roman", serif;
  --mono:   "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --read:   720px;
  --max:    920px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* Background layers (subtle, like teaser but quieter) ------------------- */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 100%);
}
.bg-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(255, 50, 50, 0.04), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(255, 30, 30, 0.04), transparent 60%);
}
.bg-scan {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* Anything that holds content sits above bg layers */
.site-header, main, .site-footer { position: relative; z-index: 2; }

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

a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: #07080a; }

/* Top status strip (hacker vibe) ----------------------------------------- */
.strip {
  display: flex; gap: 22px; align-items: center;
  padding: 10px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--rule-soft);
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0));
}
.strip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.strip .sep { color: var(--ink-faint); }
.strip .right { margin-left: auto; display: flex; gap: 22px; align-items: center; }
@media (max-width: 640px) {
  .strip { gap: 12px; padding: 8px 14px; font-size: 10px; }
  .strip .right { gap: 12px; }
  .strip .hide-sm { display: none; }
}

/* Header ----------------------------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0)),
    var(--bg);
  backdrop-filter: blur(2px);
}
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.logo {
  font-family: var(--slab);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f1ece0;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.6),
    0 0 28px rgba(255, 80, 80, 0.06);
  display: inline-flex;
  align-items: baseline;
  position: relative;
}
.logo .bang {
  color: var(--accent);
  background: linear-gradient(180deg, #ff7a3a 0%, #ff2b2b 55%, #b40e0e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 50, 50, 0.55))
          drop-shadow(0 0 36px rgba(255, 50, 50, 0.25));
  display: inline-block;
}
.logo .cursor {
  display: inline-block;
  width: 0.18em;
  height: 0.7em;
  background: #f1ece0;
  margin-left: 0.1em;
  transform: translateY(-0.06em);
  box-shadow: 0 0 8px rgba(255, 90, 90, 0.35);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Logó alatti "status feed" — hacker chip-ek mono fontban -------------- */
.brand__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  padding-left: 2px;
  max-width: 100%;
}
.brand__sub .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.brand__sub .pipe {
  color: var(--ink-faint);
  user-select: none;
}
.brand__sub a {
  color: var(--ink-mid);
  border-bottom: 1px dashed transparent;
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.brand__sub a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Kiemelt CTA — piros gomb a teaserhez */
.brand__sub a.chip--cta {
  color: #fff;
  background: linear-gradient(180deg, #ff4a3a 0%, #ff2b2b 60%, #c40c0c 100%);
  border: 1px solid rgba(255, 90, 90, 0.55);
  border-bottom: 1px solid rgba(255, 90, 90, 0.55);
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 16px rgba(255, 50, 50, 0.35),
    0 1px 0 rgba(255,255,255,0.08) inset;
}
.brand__sub a.chip--cta:hover {
  color: #fff;
  background: linear-gradient(180deg, #ff5a4a 0%, #ff3838 60%, #d11212 100%);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 22px rgba(255, 50, 50, 0.6),
    0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-1px);
}
.brand__sub .play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  margin-left: 2px;
  border: 1px solid rgba(255, 60, 60, 0.30);
  border-radius: 50%;
  color: var(--accent);
  font-size: 8px;
  line-height: 1;
  padding: 0 0 0 1px;
  border-bottom: 1px solid rgba(255, 60, 60, 0.30); /* override dashed */
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.brand__sub .play:hover {
  background: rgba(255, 30, 30, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.08);
}

/* Mini osztrák zászló ikon */
.flag-at {
  display: inline-block;
  width: 14px;
  height: 10px;
  margin-left: 4px;
  vertical-align: -1px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* Containers ------------------------------------------------------------ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* Section title (terminal-style) --------------------------------------- */
.section-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "$";
  color: var(--accent);
  font-weight: 700;
}

/* Article list — single column, stacked, hacker-style ------------------ */
.story-list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
}
.story-list > li {
  border-bottom: 1px solid var(--rule);
}
.story-list > li:first-child { border-top: 1px solid var(--rule); }

.story {
  display: block;
  padding: 28px 0;
  position: relative;
  transition: background .2s ease;
}
.story:hover { background: rgba(255, 50, 50, 0.022); }
.story:hover .story__title { color: var(--accent); }
.story:hover::before {
  content: "";
  position: absolute; left: -22px; top: 28px; bottom: 28px;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.story__meta .cat {
  color: var(--accent);
  font-weight: 600;
}
.story__meta .cat::before { content: "#"; opacity: 0.7; margin-right: 1px; }
.story__meta .date { color: var(--ink-mid); }
.story__meta .read { color: var(--ink-dim); }
.story__meta .sep { color: var(--ink-faint); }

.story__title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #f1ece0;
  transition: color .15s ease;
}
.story__dek {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin: 0;
  max-width: var(--read);
}
.story__dek strong { color: var(--ink); font-weight: 700; }

/* Lead variant — same structure, slightly bigger */
.story--lead .story__title {
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.12;
}
.story--lead .story__dek { font-size: 17px; }
.story--lead { padding: 36px 0 40px; }

/* Soft "soon" item — disabled, dimmed */
.story--soon { opacity: 0.5; pointer-events: none; }
.story--soon .story__meta .cat { color: var(--ink-mid); }

/* Article page --------------------------------------------------------- */
.article {
  max-width: var(--read);
  margin: 0 auto;
  padding: 56px 22px 80px;
}
.article__meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.article__meta .cat { color: var(--accent); font-weight: 600; }
.article__meta .cat::before { content: "#"; opacity: 0.7; margin-right: 1px; }
.article__meta .sep { color: var(--ink-faint); }
.article__meta strong { color: var(--ink-mid); font-weight: 600; }

.article__title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: #f1ece0;
}
.article__dek {
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 400;
  max-width: var(--read);
}

.article__body {
  font-family: var(--mono);
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink);
}
.article__body > * + * { margin-top: 1.2em; }
.article__body p { margin: 0; }
.article__body h2 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-top: 1.8em;
  color: #f1ece0;
}
.article__body h3 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  margin-top: 1.5em;
  color: #f1ece0;
}
.article__body a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.article__body a:hover { color: var(--accent); }
.article__body strong { color: #f1ece0; font-weight: 700; }
.article__body em { color: var(--ink); font-style: normal; background: rgba(255, 50, 50, 0.08); padding: 0 4px; }

.article__body blockquote {
  margin: 1.6em 0;
  padding: 12px 0 12px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 50, 50, 0.04);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.5;
  color: #f1ece0;
  font-weight: 500;
}
.article__body blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  color: var(--ink-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}
.article__body figure { margin: 1.6em 0; }
.article__body figure img,
.article__body figure .placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
}
.article__body figcaption {
  padding-top: 8px;
  font-size: 12px;
  color: var(--ink-dim);
  font-family: var(--mono);
}
.article__body ul, .article__body ol { padding-left: 1.4em; margin: 0; }
.article__body li + li { margin-top: 0.4em; }
.article__body ul li::marker { color: var(--accent); }

/* Hero figure (article cover) ------------------------------------------ */
.article__hero {
  margin: 0 0 28px;
}
.article__hero .placeholder,
.article__hero img {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.article__hero figcaption {
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
}

/* Audio embed ---------------------------------------------------------- */
.audio-embed {
  margin: 1.6em 0;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.audio-embed::before {
  content: "▶";
  color: var(--accent);
  font-size: 14px;
}
.audio-embed strong { color: #f1ece0; font-family: var(--mono); font-weight: 700; }

/* Cikk-eleji dőlt idézet (a klasszikus dek helyett) -------------------- */
.dek-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0 0 32px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 50, 50, 0.04);
}
.dek-quote p {
  font-style: italic;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.dek-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}
.dek-quote cite::before { content: "— "; opacity: 0.6; }

/* Kör alakú „kattintható nyíl" (külső linkhez, videóhoz) --------------- */
.play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255, 60, 60, 0.40);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  padding-left: 2px;
  flex-shrink: 0;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.play-link:hover {
  color: var(--accent);
  background: rgba(255, 30, 30, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  transform: scale(1.08);
}

/* YouTube link-card (thumbnail + play, megnyitás új lapon) -------------
   Embed helyett, mert a videó tulajdonosa letilthatta a beágyazást
   (YouTube error 153). Thumbnail + külső link mindig működik. */
.yt-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.8em 0 0;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.yt-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255, 50, 50, 0.22);
}
.yt-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
  transition: filter .25s ease, transform .35s ease;
}
.yt-card:hover img {
  filter: brightness(0.85);
  transform: scale(1.02);
}
.yt-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 30, 30, 0.55);
  color: #fff;
  font-size: 28px;
  padding-left: 6px;
  box-shadow: 0 0 30px rgba(255, 50, 50, 0.55);
  transition: background .15s ease, transform .15s ease;
}
.yt-card:hover .yt-card__play {
  background: rgba(255, 30, 30, 0.88);
  transform: translate(-50%, -50%) scale(1.06);
}
.yt-card__hint {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

/* "Szerk." kiemelt blokk — saját üzenet, nem forrás. ------------------- */
.editorial {
  margin: 2.4em 0 1.6em;
  padding: 26px 26px 22px;
  background: rgba(255, 50, 50, 0.045);
  border: 1px solid rgba(255, 50, 50, 0.18);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  font-family: var(--mono);
  position: relative;
}
.editorial::before {
  content: "// szerk.";
  position: absolute;
  top: -9px;
  left: 18px;
  background: var(--bg);
  padding: 0 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--mono);
}
.editorial p { margin: 0; color: #f1ece0; line-height: 1.65; }
.editorial p + p { margin-top: 1em; }
.article__body .editorial blockquote {
  margin: 1.2em 0 0.4em;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 50, 50, 0.10);
}
.article__body .editorial blockquote + p {
  margin-top: 0.6em;
  font-weight: 700;
  color: #fff;
}

/* Forrás-link gyűjtemény (mono lista a cikkben) ------------------------ */
.link-list {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}
.link-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
}
.link-list li:first-child { border-top: 1px solid var(--rule); }
.link-list .src {
  color: var(--accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 3px;
  white-space: nowrap;
}
.link-list .src::before { content: "["; opacity: 0.5; margin-right: 1px; }
.link-list .src::after  { content: "]"; opacity: 0.5; margin-left: 1px; }
.article__body .link-list a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
  background: none;
  transition: color .15s ease, border-color .15s ease;
}
.article__body .link-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 600px) {
  .link-list li { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
}

/* Image placeholder — terminal grid pattern ---------------------------- */
.placeholder {
  background:
    linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}
.placeholder::before {
  content: "[ no_image.bin ]";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 60, 60, 0.18);
  z-index: 1;
}
.placeholder--lead::before {
  content: "bar!kád";
  font-family: var(--slab);
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -0.02em;
  color: rgba(255, 60, 60, 0.05);
}

/* Article footer ------------------------------------------------------- */
.article__footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.back-home {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 8px 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.back-home::before { content: "<"; color: var(--accent); }
.back-home:hover {
  color: var(--accent);
  border-color: rgba(255, 90, 90, 0.35);
  background: rgba(255, 30, 30, 0.04);
}
.article__footer .tags { color: var(--ink-mid); }
.article__footer .tags .hash { color: var(--accent); margin-right: 1px; }

/* Lead spacing on homepage --------------------------------------------- */
.lead-wrap { padding-top: 6px; }

/* Footer --------------------------------------------------------------- */
.site-footer {
  margin-top: 32px;
  padding: 32px 0 48px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.site-footer .logo { font-size: 32px; }
.site-footer__links {
  display: flex; flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer__links a { color: var(--ink-mid); }
.site-footer__links a:hover { color: var(--accent); }

/* Footer CTA — piros gomb (egyezik a teaser stílussal) */
.cta-btn {
  color: #fff !important;
  background: linear-gradient(180deg, #ff4a3a 0%, #ff2b2b 60%, #c40c0c 100%);
  border: 1px solid rgba(255, 90, 90, 0.55);
  padding: 7px 14px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 16px rgba(255, 50, 50, 0.35),
    0 1px 0 rgba(255,255,255,0.08) inset;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.cta-btn:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #ff5a4a 0%, #ff3838 60%, #d11212 100%);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 22px rgba(255, 50, 50, 0.6),
    0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-1px);
}
.site-footer__copy {
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* KaDe easter egg ------------------------------------------------------ */
/* Findable but quiet — small fixed mono chip in the bottom-right.
   On dark bg, low-alpha red glow keeps it subtle until you look.       */
.kade {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: rgba(255, 60, 60, 0.28);
  text-shadow: 0 0 8px rgba(255, 50, 50, 0.18);
  padding: 6px 10px;
  border: 1px solid rgba(255, 60, 60, 0.10);
  background: rgba(255, 30, 30, 0.025);
  user-select: text;
  cursor: default;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, text-shadow .2s ease;
}
.kade::before { content: "// "; color: rgba(255, 60, 60, 0.4); margin-right: 2px; }
.kade:hover {
  color: var(--accent);
  border-color: rgba(255, 60, 60, 0.5);
  background: rgba(255, 30, 30, 0.08);
  text-shadow: 0 0 12px rgba(255, 50, 50, 0.6);
  transform: translateY(-1px);
}
.kade::selection { background: var(--accent); color: #07080a; }

/* Egyszínű kamion ikon a KáDé chip mellett */
.kade-truck {
  display: inline-block;
  width: 18px;
  height: 9px;
  margin-left: 6px;
  vertical-align: middle;
  fill: currentColor;
}

/* Helyi videó beágyazás (HTML5 video tag) — poster + középső play gomb */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.8em 0 0;
  border: 1px solid var(--rule);
  background: #000;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.video-frame .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font: inherit;
  transition: opacity .25s ease, background .25s ease;
  z-index: 2;
}
.video-frame .video-play:hover { background: rgba(0, 0, 0, 0.05); }
.video-frame .video-play__btn {
  width: 92px; height: 92px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(255, 30, 30, 0.55);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px;
  padding-left: 8px;
  box-shadow: 0 0 32px rgba(255, 50, 50, 0.55);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.video-frame .video-play:hover .video-play__btn {
  background: rgba(255, 30, 30, 0.88);
  transform: scale(1.06);
  box-shadow: 0 0 44px rgba(255, 50, 50, 0.7);
}
.video-frame[data-state="playing"] .video-play {
  opacity: 0;
  pointer-events: none;
}

/* Countdown block (jelzés-cikk / főoldali lead) ------------------------ */
.countdown-wrap {
  margin: 1.6em 0 1.8em;
  padding: 28px 18px 24px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  background: rgba(255, 50, 50, 0.04);
  text-align: center;
}
.countdown-target {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.countdown-target::before { content: "// "; color: var(--accent); }
.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-family: var(--mono);
  font-weight: 700;
  color: #f1ece0;
  text-transform: uppercase;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
}
.countdown__num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(42px, 9vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f1ece0;
  text-shadow: 0 0 24px rgba(255, 50, 50, 0.18);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 0 0 1.8em;
}
a.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(180deg, #ff4a3a 0%, #ff2b2b 60%, #c40c0c 100%);
  border: 1px solid rgba(255, 90, 90, 0.55);
  padding: 14px 22px;
  border-radius: 3px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 20px rgba(255, 50, 50, 0.35),
    0 1px 0 rgba(255,255,255,0.08) inset;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
a.cta-link:hover {
  color: #fff;
  background: linear-gradient(180deg, #ff5a4a 0%, #ff3838 60%, #d11212 100%);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3) inset,
    0 0 26px rgba(255, 50, 50, 0.6),
    0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-1px);
}
.cta-link::before { content: "▸"; color: #fff; opacity: 0.9; }
.article__body a.cta-link { border-bottom: none; padding: 14px 22px; }

.signoff {
  text-align: center;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}
.signoff .rose {
  font-size: 1.05em;
  vertical-align: -0.12em;
}
.signoff-icons {
  display: inline;
  white-space: nowrap;
}
.signoff-icons .ico {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.22em;
  margin-left: 0.3em;
  display: inline-block;
  transition: transform .15s ease, filter .15s ease;
}
.signoff-icons .ico:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(255, 80, 80, 0.5));
}

/* Főoldali lead — interaktív tartalmas változat (nem <a> wrapper) */
.story--block {
  display: block;
  padding: 36px 0 40px;
}
.story--block .lead-payload {
  max-width: var(--read);
  margin: 0 auto;
}
.story--block .story__meta { margin-bottom: 12px; }
.story--block .story__title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: #f1ece0;
}
.story--block .story__title a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.story--block .story__title a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.story--block .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--rule);
  padding: 8px 14px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.story--block .read-more::after { content: ">"; color: var(--accent); }
.story--block .read-more:hover {
  color: var(--accent);
  border-color: rgba(255, 90, 90, 0.35);
  background: rgba(255, 30, 30, 0.04);
}
.read-more-row { text-align: center; margin-top: 4px; }

/* Subtle, rare glitch on the bang -------------------------------------- */
.logo .bang.glitching {
  animation: bangGlitch 0.45s steps(1) 1;
}
@keyframes bangGlitch {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2px, 0); filter: drop-shadow(2px 0 0 #2bd1ff) drop-shadow(-2px 0 0 #ffd400); }
  40%  { transform: translate( 2px, 0); filter: drop-shadow(-2px 0 0 #2bd1ff) drop-shadow(2px 0 0 #ffd400); }
  60%  { transform: translate( 0, 1px); }
  80%  { transform: translate(-1px, -1px); }
  100% { transform: translate(0, 0); }
}

/* Responsive ----------------------------------------------------------- */
@media (max-width: 720px) {
  .site-header__inner { padding: 22px 16px 18px; gap: 12px; }
  .brand__sub { font-size: 11px; gap: 4px 10px; }
  .brand__sub .chip { white-space: normal; }
  .container { padding: 0 16px; }
  .article { padding: 32px 16px 56px; }
  .story { padding: 22px 0; }
  .story:hover::before { left: -16px; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .article__body { font-size: 14.5px; }
  .article__title { font-size: clamp(28px, 9vw, 40px); }
  .article__dek { font-size: 16px; }
  .story__title { font-size: clamp(24px, 7vw, 34px); }
  .story--lead .story__title { font-size: clamp(32px, 10vw, 50px); }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

/* Print --------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .kade, .bg-grid, .bg-vignette, .bg-scan { display: none; }
  body { background: #fff; color: #000; }
  .article { padding: 0; max-width: none; }
  .article__title, .article__body h2, .article__body h3 { color: #000; }
}
