/* ═══════════════════════════════════════════════
   GAMEWATCH · theme.css  v1.0
   Schwarzweiß-Designsystem
   ═══════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────── */
:root {
  --paper:         oklch(0.985 0 0);
  --ink:           oklch(0.12  0 0);
  --muted:         oklch(0.45  0 0);
  --bg2:           oklch(0.95  0 0);
  --bg3:           oklch(0.90  0 0);
  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;
  --radius:        0px;
  --transition:    0.15s ease;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--paper); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; line-height: 1.6; }
::selection { background: var(--ink); color: var(--paper); }
a     { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── UTILITIES ──────────────────────────────────── */
.container     { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.mono  { font-family: var(--font-mono); }
.upper { text-transform: uppercase; letter-spacing: .12em; }
.grayscale { filter: grayscale(100%); }
.sr-only { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── TOP STRIP ──────────────────────────────────── */
.top-strip { background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--ink); padding-top: env(safe-area-inset-top); }
.top-strip__inner {
  max-width: 1400px; margin: 0 auto; padding: .4rem 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .15em;
}
.top-strip__center { display: none; }
@media (min-width: 640px) { .top-strip__center { display: inline; } }

/* ── SITE HEADER ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding-top: env(safe-area-inset-top);
}
/* Deckende Fläche über dem Header (Safe-Area / Notch-Bereich),
   damit beim Scrollen nichts durchscheint */
.site-header::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 100%;
  height: 100vh;
  background: var(--paper);
  z-index: -1;
}
.site-header__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem; gap: 1rem; overflow: hidden;
}

/* Logo */
.site-logo { display: flex; flex-direction: row; align-items: center; gap: .55rem; flex-shrink: 0; text-decoration: none; color: inherit; height: 100%; }
.site-logo__img { height: 38px !important; max-height: 38px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
.site-logo__text { display: flex; flex-direction: column; justify-content: center; }
.site-logo__name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.04em; line-height: 1; text-transform: lowercase; }
.site-logo__tagline { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; opacity: .5; margin-top: 2px; }
@media (max-width: 600px) { .site-logo__img { height: 30px !important; max-height: 30px; } .site-logo__name { font-size: 1.15rem; } .site-logo__tagline { display: none; } }
.custom-logo { max-height: 38px; width: auto; }

/* ── PRIMARY NAV + DROPDOWNS ─────────────────────── */
.primary-nav { display: none; }
@media (min-width: 960px) { .primary-nav { display: flex; align-items: center; } }
.primary-nav ul { display: flex; align-items: center; }
.primary-nav li { position: relative; }
.primary-nav a {
  display: flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem;
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap; transition: opacity var(--transition);
}
.primary-nav a:hover { text-decoration: underline; text-underline-offset: 7px; }
.primary-nav .menu-item-has-children > a::after { content: '▾'; font-size: .55rem; margin-left: .2rem; opacity: .5; }
.primary-nav .sub-menu {
  display: none; position: absolute; top: calc(100% + 2px); left: 0;
  min-width: 210px; background: var(--paper); border: 2px solid var(--ink);
  z-index: 300; flex-direction: column;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu { display: flex; }
.primary-nav .sub-menu li { border-bottom: 1px solid var(--ink); }
.primary-nav .sub-menu li:last-child { border-bottom: none; }
.primary-nav .sub-menu a { padding: .65rem 1rem; font-size: .72rem; display: block; width: 100%; }
.primary-nav .sub-menu a:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a { text-decoration: underline; text-underline-offset: 7px; }

/* Header controls */
.header-controls { display: flex; align-items: center; gap: .6rem; }
.btn-login {
  display: none; padding: .45rem 1rem;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
  border: none; transition: opacity var(--transition); white-space: nowrap;
}
.btn-login:hover { opacity: .75; }
@media (min-width: 640px) { .btn-login { display: inline-flex; align-items: center; gap: .35rem; } }
.hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 2px solid var(--ink);
  background: none; flex-shrink: 0;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger__bar { display: block; width: 16px; height: 2px; background: var(--ink); position: relative; }
.hamburger__bar::before, .hamburger__bar::after { content: ''; position: absolute; left: 0; width: 16px; height: 2px; background: var(--ink); }
.hamburger__bar::before { top: -5px; }
.hamburger__bar::after  { top:  5px; }

/* ── MOBILE MENU ────────────────────────────────── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 400; }
.mobile-menu.is-open { display: block; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px); background: var(--paper);
  border-left: 2px solid var(--ink); display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; height: 4rem; flex-shrink: 0;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
}
.mobile-menu__close { background: none; border: none; color: var(--paper); display: flex; align-items: center; }
.mobile-menu__nav { flex: 1; }
.mobile-menu__nav ul { list-style: none; }
.mobile-menu__nav > ul > li { border-bottom: 2px solid var(--ink); }
.mobile-menu__nav > ul > li > a { display: block; padding: .9rem 1.25rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; }
.mobile-menu__nav > ul > li > a:hover,
.mobile-menu__nav > ul > li.current-menu-item > a { background: var(--ink); color: var(--paper); }
.mobile-menu__nav .sub-menu { border-top: 1px solid var(--ink); }
.mobile-menu__nav .sub-menu li { border-bottom: 1px solid rgba(0,0,0,.1); }
.mobile-menu__nav .sub-menu a { display: block; padding: .55rem 1.25rem .55rem 2rem; font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.mobile-menu__nav .sub-menu a:hover { background: var(--bg2); }
.mobile-menu__footer { flex-shrink: 0; border-top: 2px solid var(--ink); }
.mobile-menu__login { display: block; padding: .9rem 1.25rem; background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; text-align: center; }

/* ── HERO ───────────────────────────────────────── */
.hero { border-bottom: 2px solid var(--ink); }
.hero__inner { max-width: 1400px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 7fr 5fr; padding: 5rem 1.5rem; gap: 3rem; } }
/* Zentrierte Variante (ohne Bild rechts) */
.hero--centered .hero__inner { grid-template-columns: 1fr !important; padding-top: 4rem; padding-bottom: 4rem; }
.hero--centered .hero__left { align-items: center; text-align: center; }
.hero--centered .hero__title { margin-top: 1rem; }
.hero--centered .hero__desc { margin-left: auto; margin-right: auto; }
/* 2/3 Breite auf Desktop, volle Breite auf Mobil */
.hero--centered .hero__left > * { width: 100%; }
.hero--centered .search-box { margin: 0 auto; width: 100%; }
@media (min-width: 1024px) {
  .hero--centered .hero__left { width: 66.66%; max-width: 1100px; margin-left: auto; margin-right: auto; }
}
.hero--centered .search-label,
.hero--centered .search-chips { text-align: center; justify-content: center; }
.hero--centered .live-badge { justify-content: center; }
.hero__left { display: flex; flex-direction: column; gap: 2rem; }
.live-badge { display: flex; align-items: center; gap: .75rem; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
.live-badge__label { padding: 2px 8px; background: var(--ink); color: var(--paper); font-weight: 700; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem,9vw,7.5rem); line-height: .88; letter-spacing: -.04em; margin-top: 1.5rem; }
.hero__title em { font-weight: 300; font-style: italic; }
.hero__desc { font-size: 1rem; line-height: 1.7; opacity: .8; max-width: 560px; }
.search-label { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .7rem; }
.search-box { display: flex; border: 2px solid var(--ink); }
.search-box__icon { display: flex; align-items: center; justify-content: center; padding: 0 1rem; background: var(--ink); color: var(--paper); }
.search-box input[type="search"] { flex: 1; padding: .9rem 1rem; background: transparent; border: none; outline: none; font-family: var(--font-sans); font-size: .9rem; color: var(--ink); }
.search-box input::placeholder { opacity: .45; }
.search-box button[type="submit"] { padding: .9rem 1.25rem; background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; border: none; transition: opacity var(--transition); }
.search-box button:hover { opacity: .75; }
.search-chips { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.search-chip { padding: .25rem .7rem; border: 1px solid var(--ink); font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; background: transparent; color: var(--ink); transition: background var(--transition), color var(--transition); }
.search-chip:hover { background: var(--ink); color: var(--paper); }
.hero__right { position: relative; }
.hero__img-wrap { position: relative; overflow: hidden; }
.hero__img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(100%); display: block; }
.hero__placeholder { width: 100%; aspect-ratio: 4/5; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; opacity: .35; }
.hero__img-meta-top { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; color: var(--paper); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; z-index: 2; }
.hero__img-meta-bot { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; color: var(--paper); z-index: 2; }
.hero__cover-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .8; }
.hero__cover-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1.1; }

/* ── MARQUEE ────────────────────────────────────── */
.marquee { border-bottom: 2px solid var(--ink); background: var(--ink); color: var(--paper); padding: .7rem 0; overflow: hidden; }
.marquee__track { display: flex; white-space: nowrap; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; animation: marquee 45s linear infinite; }
.marquee__track .item { padding: 0 2rem; display: inline-flex; align-items: center; gap: 2rem; }
.marquee__track .dot { opacity: .35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION LAYOUT ─────────────────────────────── */
.section { border-bottom: 2px solid var(--ink); padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }
.section--dark { background: var(--ink); color: var(--paper); }
.section--grey { background: var(--bg2); }
.section__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.section__eyebrow { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; opacity: .6; margin-bottom: .6rem; }
.section--dark .section__eyebrow { opacity: .5; }
.section__title { font-family: var(--font-display); font-size: clamp(1.8rem,4.5vw,3.2rem); font-weight: 700; letter-spacing: -.04em; }
.section__desc { font-size: .9rem; line-height: 1.7; opacity: .75; margin-top: .75rem; max-width: 420px; }
.see-all { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; text-decoration: underline; text-underline-offset: 6px; white-space: nowrap; transition: opacity var(--transition); flex-shrink: 0; }
.see-all:hover { text-decoration: none; opacity: .7; }

/* ── GAME CARDS ─────────────────────────────────── */
.games-grid { display: grid; gap: 1px; background: var(--ink); border: 2px solid var(--ink); }
@media (min-width: 640px)  { .games-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1200px) { .games-grid { grid-template-columns: repeat(3,1fr); } }
.games-grid--4 { }
@media (min-width: 1200px) { .games-grid--4 { grid-template-columns: repeat(4,1fr); } }

.game-card { background: var(--paper); padding: 1.5rem; display: flex; flex-direction: column; }
.game-card__img { position: relative; overflow: hidden; margin-bottom: 1.25rem; }
.game-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(100%); transition: transform .7s ease; display: block; }
.game-card:hover .game-card__img img { transform: scale(1.04); }
.game-card__placeholder { width: 100%; aspect-ratio: 4/3; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: .62rem; opacity: .3; text-transform: uppercase; }
.score-badge { position: absolute; top: .75rem; left: .75rem; background: var(--paper); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; line-height: 1; padding: .2rem .45rem; border: 2px solid var(--ink); }
.verdict-badge { position: absolute; bottom: .75rem; right: .75rem; background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; padding: 3px 8px; }
.platform-badges { position: absolute; top: .75rem; right: .75rem; display: flex; flex-direction: column; gap: 3px; }
.platform-badge { background: rgba(0,0,0,.7); color: var(--paper); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; padding: 2px 5px; }
.game-card__meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .55; margin-bottom: .4rem; }
.game-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: .4rem; line-height: 1.15; }
.game-card__title a:hover { text-decoration: underline; }
.game-card__excerpt { font-size: .85rem; line-height: 1.6; opacity: .75; margin-bottom: 1rem; flex: 1; }
.game-card__price { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ink); }
.game-card__price-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.game-card__price-val { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -.03em; }
.game-card__price-shop { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; opacity: .55; margin-left: auto; }

/* ACF data table */
.acf-table { border-top: 1px solid var(--ink); padding-top: 1rem; margin-top: auto; }
.acf-table__label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .45; margin-bottom: .6rem; }
.acf-table__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .75rem; font-family: var(--font-mono); font-size: .7rem; }
.acf-table__key { opacity: .6; }
.acf-table__val { text-align: right; }
.acf-table__val--bold { font-weight: 700; }

/* ── NEWS CARDS ─────────────────────────────────── */
.news-grid { display: grid; gap: 1px; background: var(--ink); border: 2px solid var(--ink); }
@media (min-width: 640px)  { .news-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3,1fr); } }
.news-card { background: var(--paper); padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; transition: background var(--transition), color var(--transition); }
.news-card:hover { background: var(--ink); color: var(--paper); }
.news-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: grayscale(100%); margin-bottom: .75rem; }
.news-card__tag { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; border: 1px solid currentColor; padding: 2px 7px; display: inline-block; width: fit-content; }
.news-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; line-height: 1.2; margin-top: .25rem; }
.news-card__meta { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; opacity: .55; margin-top: auto; }

/* ── DEALS ──────────────────────────────────────── */
.deals-grid { display: grid; gap: 1px; background: var(--ink); border: 2px solid var(--ink); }
@media (min-width: 640px)  { .deals-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .deals-grid { grid-template-columns: repeat(4,1fr); } }
.deal-card { background: var(--paper); padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.deal-card__discount { font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: -.04em; line-height: 1; }
.deal-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -.02em; line-height: 1.2; }
.deal-card__prices { display: flex; align-items: baseline; gap: .5rem; margin-top: .25rem; }
.deal-card__orig { font-family: var(--font-mono); font-size: .75rem; text-decoration: line-through; opacity: .5; }
.deal-card__new  { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.03em; }
.deal-card__shop { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.deal-card__btn  { display: block; margin-top: auto; padding: .5rem 1rem; background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; text-align: center; border: none; transition: opacity var(--transition); }
.deal-card__btn:hover { opacity: .75; }
.deal-card__expires { font-family: var(--font-mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; opacity: .45; }

/* ── PRICE TABLE ────────────────────────────────── */
.price-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .price-layout { grid-template-columns: 1fr 2fr; } }
.price-update { display: flex; align-items: center; gap: .65rem; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; margin-top: 1.5rem; }
.price-table { border: 2px solid var(--paper); overflow-x: auto; }
.price-table__head { display: grid; grid-template-columns: 4fr 2fr 2fr 2fr 1fr; padding: .65rem 1rem; border-bottom: 2px solid var(--paper); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .5; }
.price-table__head div:nth-child(3),
.price-table__head div:nth-child(4) { text-align: right; }
.price-table__row { display: grid; grid-template-columns: 4fr 2fr 2fr 2fr 1fr; padding: .85rem 1rem; border-bottom: 1px solid rgba(253,253,253,.2); align-items: center; transition: background var(--transition), color var(--transition); }
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background: var(--paper); color: var(--ink); }
.price-table__row .name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.price-table__row .shop { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.price-table__row .price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-align: right; }
.price-table__row .trend { font-family: var(--font-mono); font-size: .68rem; text-align: right; }
.price-table__row .action { text-align: right; }
.price-table__row .action a { font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; text-decoration: underline; text-underline-offset: 4px; }

/* ── FORUM / THREADS ────────────────────────────── */
.threads-list { border: 2px solid var(--ink); }
.thread-item { display: block; padding: 1.1rem 1.25rem; border-bottom: 2px solid var(--ink); transition: background var(--transition), color var(--transition); }
.thread-item:last-child { border-bottom: none; }
.thread-item:hover { background: var(--ink); color: var(--paper); }
.thread-item__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.thread-item__tag { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; border: 1px solid currentColor; padding: 2px 6px; }
.thread-item__author { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.thread-item__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: .5rem; transition: transform var(--transition); }
.thread-item:hover .thread-item__title { transform: translateX(4px); }
.thread-item__meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .68rem; opacity: .6; }

/* ── FORUM STATS ────────────────────────────────── */
.forum-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .forum-layout { grid-template-columns: 5fr 7fr; } }
.forum-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink); border: 2px solid var(--ink); max-width: 360px; margin-top: 2rem; }
.forum-stat { background: var(--paper); padding: 1.1rem 1.25rem; }
.forum-stat__icon { font-size: 1.1rem; margin-bottom: .4rem; }
.forum-stat__num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -.04em; }
.forum-stat__label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .6; }

/* ── CTA ────────────────────────────────────────── */
.cta { padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta__eyebrow { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; opacity: .6; margin-bottom: 1.5rem; }
.cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem,9vw,6.5rem); line-height: .88; letter-spacing: -.05em; margin-bottom: 2rem; }
.cta__title em { font-weight: 300; font-style: italic; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.75rem; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; border: 2px solid var(--ink); cursor: pointer; transition: opacity var(--transition); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--outline  { background: transparent; color: var(--ink); }
.btn--sm       { padding: .5rem 1rem; font-size: .65rem; }
.btn:hover { opacity: .75; }
.btn--white { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--white:hover { opacity: .85; }

/* ── SITE FOOTER ────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--paper); border-top: 2px solid var(--ink); }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 1.5rem; max-width: 1400px; margin: 0 auto; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 3fr 3fr 3fr; } }
.footer-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.04em; margin-bottom: .75rem; display: flex; align-items: center; gap: 6px; }
.footer-brand__dot { display: inline-block; width: 10px; height: 10px; background: var(--paper); border-radius: 50%; }
.footer-brand__desc { font-size: .8rem; opacity: .6; line-height: 1.65; }
.footer-col__head { font-family: var(--font-mono); font-size: .6rem; text-transform: uppercase; letter-spacing: .18em; opacity: .45; margin-bottom: 1rem; }
.footer-col__list li { margin-bottom: .45rem; }
.footer-col__list a { font-size: .85rem; transition: opacity var(--transition); }
.footer-col__list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { border-top: 1px solid rgba(253,253,253,.15); padding: .9rem 1.5rem; max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .5; }

/* ── SINGLE GAME PAGE ───────────────────────────── */
.game-hero { border-bottom: 2px solid var(--ink); background: var(--ink); color: var(--paper); }
.game-hero__inner { max-width: 1400px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .game-hero__inner { grid-template-columns: auto 1fr; gap: 3rem; } }
.game-hero__cover { width: 200px; flex-shrink: 0; }
@media (min-width: 1024px) { .game-hero__cover { width: 260px; } }
.game-hero__cover img { width: 100%; filter: grayscale(100%); border: 2px solid rgba(255,255,255,.2); }
.game-hero__platform-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.game-hero__platform { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; border: 1px solid rgba(255,255,255,.4); padding: 2px 8px; }
.game-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.5rem,6vw,5rem); line-height: .88; letter-spacing: -.04em; margin-bottom: 1rem; }
.game-hero__meta { display: flex; flex-wrap: wrap; gap: .75rem 2rem; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; opacity: .7; margin-bottom: 1.5rem; }
.game-hero__score-wrap { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.game-hero__score { font-family: var(--font-display); font-weight: 700; font-size: 4rem; letter-spacing: -.05em; line-height: 1; }
.game-hero__verdict { background: var(--paper); color: var(--ink); font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; padding: .4rem .8rem; }
.game-hero__price-teaser { display: inline-flex; align-items: baseline; gap: .5rem; margin-top: 1rem; padding: .75rem 1.25rem; border: 1px solid rgba(255,255,255,.3); }
.game-hero__price-label { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .6; }
.game-hero__price-val { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.03em; }

/* Game page tabs */
.game-tabs { border-bottom: 2px solid var(--ink); position: sticky; top: calc(72px + env(safe-area-inset-top)); z-index: 100; background: var(--paper); }
.game-tabs__list { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; display: flex; overflow-x: auto; gap: 0; scrollbar-width: none; }
.game-tabs__list::-webkit-scrollbar { display: none; }
.game-tabs__item { display: block; padding: .85rem 1.2rem; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: border-color var(--transition); }
.game-tabs__item:hover,
.game-tabs__item.is-active { border-bottom-color: var(--ink); font-weight: 700; }

/* Game sections */
.game-section { border-bottom: 2px solid var(--ink); padding: 3rem 0; }
.game-section__title { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; letter-spacing: -.03em; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ink); }

/* Problems list */
.problem-list { border: 2px solid var(--ink); }
.problem-item { padding: 1.25rem; border-bottom: 1px solid var(--ink); display: grid; gap: .5rem; }
.problem-item:last-child { border-bottom: none; }
.problem-item__status { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; padding: 2px 8px; border: 1px solid currentColor; width: fit-content; }
.problem-item__status--open   { color: #b45309; border-color: #b45309; }
.problem-item__status--solved { color: #166534; border-color: #166534; }
.problem-item__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; }
.problem-item__meta  { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }

/* ── ARCHIVE / LIST PAGES ───────────────────────── */
.page-wrap { max-width: 1400px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-title { font-family: var(--font-display); font-size: clamp(2rem,5vw,4rem); font-weight: 700; letter-spacing: -.04em; border-bottom: 2px solid var(--ink); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
.archive-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2.5rem; }
.filter-btn { padding: .3rem .8rem; border: 1px solid var(--ink); font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; background: transparent; color: var(--ink); transition: background var(--transition), color var(--transition); }
.filter-btn:hover,
.filter-btn.is-active { background: var(--ink); color: var(--paper); }

/* Post list */
.post-list__item { padding: 1.5rem 0; border-bottom: 1px solid var(--ink); display: grid; gap: .75rem; }
@media (min-width: 768px) { .post-list__item { grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; } }
.post-list__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: grayscale(100%); display: block; }
.post-list__tag { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; opacity: .6; margin-bottom: .35rem; }
.post-list__title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.03em; margin-bottom: .45rem; line-height: 1.15; }
.post-list__title a:hover { text-decoration: underline; }
.post-list__excerpt { font-size: .875rem; line-height: 1.65; opacity: .75; margin-bottom: .6rem; }
.post-list__meta { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }

/* Single post */
.entry-header { margin-bottom: 2.5rem; border-bottom: 2px solid var(--ink); padding-bottom: 2rem; }
.entry-breadcrumb { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; margin-bottom: 1rem; }
.entry-breadcrumb a:hover { text-decoration: underline; }
.entry-title { font-family: var(--font-display); font-size: clamp(1.8rem,5vw,4rem); font-weight: 700; letter-spacing: -.04em; line-height: .9; }
.entry-meta { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; opacity: .6; margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.entry-thumbnail img { width: 100%; max-height: 460px; object-fit: cover; filter: grayscale(100%); margin-bottom: 2rem; display: block; }
.entry-content { max-width: 760px; font-size: 1.05rem; line-height: 1.85; }
.entry-content h2 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -.03em; margin: 2rem 0 .75rem; }
.entry-content h3 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -.02em; margin: 1.5rem 0 .5rem; }
.entry-content p { margin-bottom: 1.25rem; opacity: .9; }
.entry-content a { text-decoration: underline; text-underline-offset: 4px; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .4rem; }
.entry-content blockquote { border-left: 4px solid var(--ink); padding-left: 1.25rem; margin: 1.5rem 0; opacity: .8; font-style: italic; }

/* Review score box */
.review-verdict { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; border: 2px solid var(--ink); margin-bottom: 2rem; }
.review-verdict__score { font-family: var(--font-display); font-weight: 700; font-size: 4.5rem; letter-spacing: -.05em; line-height: 1; }
.review-verdict__label { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; display: block; margin-bottom: .25rem; }
.review-verdict__verdict { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.03em; }
.review-pros-cons { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .review-pros-cons { grid-template-columns: 1fr 1fr; } }
.review-pros, .review-cons { border: 1px solid var(--ink); padding: 1rem 1.25rem; }
.review-pros__head, .review-cons__head { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; opacity: .6; }
.review-pros li, .review-cons li { font-size: .875rem; margin-bottom: .4rem; padding-left: 1rem; position: relative; }
.review-pros li::before { content: '+'; position: absolute; left: 0; font-weight: 700; }
.review-cons li::before { content: '–'; position: absolute; left: 0; opacity: .6; }

/* Pagination */
.pagination { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 2.5rem; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.pagination .page-numbers { padding: .45rem .75rem; border: 2px solid var(--ink); transition: background var(--transition), color var(--transition); }
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--ink); color: var(--paper); }

/* ── SIDEBAR ────────────────────────────────────── */
.with-sidebar { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .with-sidebar { grid-template-columns: 1fr 300px; gap: 3rem; } }
/* Spielseite: keine Sidebar mehr → Inhalt volle Breite */
.single-game .with-sidebar { grid-template-columns: 1fr !important; max-width: 900px; margin: 0 auto; }
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.widget { border: 2px solid var(--ink); }
.widget-title { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .18em; opacity: .6; padding: .6rem 1rem; border-bottom: 1px solid var(--ink); }
.widget > *:last-child { padding: 1rem; }

/* ── bbPRESS ────────────────────────────────────── */
#bbpress-forums { font-family: var(--font-sans); }
#bbpress-forums ul { list-style: none; }
#bbpress-forums li.bbp-header { background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; padding: .6rem 1rem; }
#bbpress-forums li.bbp-body li,
#bbpress-forums li.bbp-body { border-bottom: 1px solid var(--ink); }
#bbpress-forums .bbp-forum-title a:hover,
#bbpress-forums .bbp-topic-title a:hover { text-decoration: underline; }
#bbpress-forums input[type="submit"],
#bbpress-forums button[type="submit"],
.bbp-submit-wrapper .button,
#bbpress-forums a.button {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .12em; padding: .5rem 1rem;
  border: 2px solid var(--ink); cursor: pointer; transition: opacity var(--transition);
}
#bbpress-forums input[type="submit"]:hover { opacity: .75; }
#bbpress-forums textarea, #bbpress-forums input[type="text"] {
  border: 2px solid var(--ink); padding: .75rem 1rem; font-family: var(--font-sans);
  font-size: .9rem; width: 100%; outline: none;
}
#bbpress-forums textarea:focus,
#bbpress-forums input[type="text"]:focus { box-shadow: 0 0 0 3px rgba(0,0,0,.1); }
.bbp-pagination-links a,
.bbp-pagination-links span { padding: .35rem .6rem; border: 1px solid var(--ink); font-family: var(--font-mono); font-size: .65rem; }
.bbp-pagination-links span.current { background: var(--ink); color: var(--paper); }
#bbpress-forums nav.bp-navs ul { display: flex; gap: 0; flex-wrap: wrap; list-style: none; border-bottom: 2px solid var(--ink); }
#bbpress-forums nav.bp-navs ul li a { display: block; padding: .6rem 1rem; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
#bbpress-forums nav.bp-navs ul li.current a,
#bbpress-forums nav.bp-navs ul li a:hover { background: var(--ink); color: var(--paper); }

/* ── BuddyPress ─────────────────────────────────── */
#buddypress ul { list-style: none; }
#buddypress .activity-list li,
#buddypress .item-list li { border-bottom: 1px solid var(--ink); padding: 1rem 0; }
#buddypress a.button,
#buddypress input[type="submit"],
#buddypress button[type="submit"] {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .12em; border: 2px solid var(--ink);
  padding: .45rem 1rem; cursor: pointer; transition: opacity var(--transition);
}
#buddypress a.button:hover,
#buddypress input[type="submit"]:hover { opacity: .75; }
#buddypress .generic-button a { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); }
#buddypress nav.bp-navs ul { display: flex; flex-wrap: wrap; gap: 0; list-style: none; border-bottom: 2px solid var(--ink); }
#buddypress nav.bp-navs ul li a { display: block; padding: .6rem 1rem; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
#buddypress nav.bp-navs ul li.current a,
#buddypress nav.bp-navs ul li a:hover { background: var(--ink); color: var(--paper); }

/* ── ALERT / INFO BOX ───────────────────────────── */
.info-box { border-left: 4px solid var(--ink); padding: 1rem 1.25rem; background: var(--bg2); margin-bottom: 1.5rem; font-size: .9rem; }
.info-box--success { border-color: #166534; background: #f0fdf4; }
.info-box--warning { border-color: #b45309; background: #fffbeb; }

/* ── PRICE ALERT FORM ───────────────────────────── */
.price-alert-form { border: 2px solid var(--ink); padding: 1.5rem; }
.price-alert-form__title { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem; }
.price-alert-form__row { display: flex; gap: .5rem; }
.price-alert-form__input { flex: 1; padding: .7rem 1rem; border: 2px solid var(--ink); font-family: var(--font-sans); font-size: .9rem; outline: none; }
.price-alert-form__btn { padding: .7rem 1.25rem; background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; border: none; white-space: nowrap; }

/* ── WISHLIST ────────────────────────────────────── */
.wishlist-toggle { display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border: 2px solid var(--ink); font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; background: transparent; color: var(--ink); transition: background var(--transition), color var(--transition); }
.wishlist-toggle.is-active,
.wishlist-toggle:hover { background: var(--ink); color: var(--paper); }
.wishlist-toggle__icon { font-size: 1rem; }

/* ── ADMIN BAR OFFSET ───────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.admin-bar .game-tabs { top: calc(72px + 32px); }
@media screen and (max-width: 782px) { .admin-bar .game-tabs { top: calc(72px + 46px); } }

/* ── RANK MATH BREADCRUMBS ──────────────────────── */
.rank-math-breadcrumb { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; margin-bottom: 1.5rem; }
.rank-math-breadcrumb a:hover { text-decoration: underline; }

/* ── NO RESULTS ─────────────────────────────────── */
.no-results { padding: 4rem; text-align: center; border: 2px dashed var(--ink); }
.no-results__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.no-results__text { opacity: .6; }

/* ═══════════════════════════════════════════════
   ADDITIONS — v1.0 extensions
   ═══════════════════════════════════════════════ */

/* ── SCORE RINGS / COLORS ────────────────────── */
.score-badge.score--high    { background: var(--ink); color: var(--paper); }
.score-badge.score--mid     { background: var(--bg3); }
.score-badge.score--low     { background: var(--paper); border: 2px solid var(--ink); }

/* ── GUIDE DIFFICULTY BADGES ─────────────────── */
.diff-badge { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; padding: 2px 7px; border: 1px solid currentColor; }
.diff-badge--beginner  { color: #166534; border-color: #166534; }
.diff-badge--medium    { color: #92400e; border-color: #92400e; }
.diff-badge--advanced  { color: #1e1b4b; border-color: #1e1b4b; }

/* ── NEWS FEATURED ───────────────────────────── */
.news-card--featured { border: 2px solid var(--ink); }

/* ── DEAL GRID 4-COL ─────────────────────────── */
@media (min-width: 1200px) { .deals-grid--5 { grid-template-columns: repeat(5,1fr); } }

/* ── COMMENT FORM ────────────────────────────── */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  border: 2px solid var(--ink); padding: .65rem 1rem;
  font-family: var(--font-sans); font-size: .9rem;
  width: 100%; outline: none; background: var(--paper); color: var(--ink);
}
.comment-form input:focus,
.comment-form textarea:focus { box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.comment-form .submit {
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); padding: .6rem 1.5rem;
  font-family: var(--font-mono); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .12em;
  cursor: pointer; transition: opacity var(--transition);
}
.comment-form .submit:hover { opacity: .75; }
.comments-area { margin-top: 3rem; border-top: 2px solid var(--ink); padding-top: 2rem; }
.comment-list { list-style: none; }
.comment { border-bottom: 1px solid var(--ink); padding: 1.25rem 0; }
.comment-author { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin-bottom: .35rem; }
.comment-meta { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; opacity: .55; margin-bottom: .6rem; }
.comment-content p { font-size: .9rem; line-height: 1.7; }

/* ── PRICE HISTORY CHART PLACEHOLDER ────────── */
.price-chart { border: 2px solid var(--ink); padding: 1rem; margin-top: 1.5rem; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.price-chart__empty { font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; opacity: .35; }

/* ── PROBLEM STATUS COUNTS ───────────────────── */
.problem-counts { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.problem-count { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; padding: .3rem .8rem; border: 1px solid currentColor; }
.problem-count--open   { color: #b45309; }
.problem-count--solved { color: #166534; }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; padding: .75rem 0; margin-bottom: 1.5rem; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumb span { margin: 0 .4rem; }

/* ── TAGS ───────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0; }
.tag-link { font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .65rem; border: 1px solid var(--ink); background: transparent; color: var(--ink); transition: background var(--transition), color var(--transition); }
.tag-link:hover { background: var(--ink); color: var(--paper); }

/* ── GAME CARD HOVER STATE ───────────────────── */
.game-card { transition: box-shadow var(--transition); }
.game-card:hover { box-shadow: 4px 4px 0 var(--ink); }

/* ── ADMIN BAR offset (double-check) ─────────── */
@media screen and (min-width: 783px) {
  .admin-bar .site-header { top: 32px; }
}

/* ── READING PROGRESS (JS-managed) ──────────── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--ink); z-index: 9999; width: 0%;
  transition: width .1s linear; pointer-events: none;
}

/* ── BACK TO TOP ─────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; background: var(--ink); color: var(--paper);
  border: none; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .85rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  z-index: 100;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { opacity: .75; }

/* ── RESPONSIVE HELPERS ──────────────────────── */
@media (max-width: 640px) {
  .price-table__head,
  .price-table__row { grid-template-columns: 3fr 2fr 2fr; }
  .price-table__head div:nth-child(4),
  .price-table__head div:nth-child(5),
  .price-table__row .trend,
  .price-table__row .action { display: none; }
  .game-hero__cover { width: 120px; }
  .game-hero__title { font-size: clamp(1.8rem,7vw,3rem); }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.5rem,12vw,5rem); }
  .forum-stats { max-width: 100%; }
  .deal-card { padding: 1rem; }
}

/* ── PRINT ───────────────────────────────────── */
@media print {
  .site-header, .marquee, .mobile-menu, .back-to-top, .game-tabs { display: none !important; }
  .entry-content { max-width: 100%; font-size: 11pt; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 8pt; opacity: .5; }
}

/* ── Footer-Logo (neues GW-Logo auf weißem Grund) ── */
.footer-brand__name { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.footer-brand__logo { height: 40px; width: auto; display: block; border-radius: 8px; }
.footer-brand__text { text-transform: lowercase; }

/* ── Deals-Diashow ("Günstig zocken") ── */
.deals-slideshow { position: relative; border: 2px solid var(--ink); overflow: hidden; aspect-ratio: 21/9; background: var(--ink); }
.deal-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; opacity: 0; pointer-events: none; transition: opacity .6s ease; text-decoration: none; color: var(--paper); }
.deal-slide.is-active { opacity: 1; pointer-events: auto; }
.deal-slide__img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%) brightness(.45); }
.deal-slide__info { position: relative; z-index: 2; padding: 2.5rem; max-width: 70%; }
.deal-slide__disc { display: inline-block; background: var(--paper); color: var(--ink); font-family: var(--font-mono); font-weight: 700; font-size: .9rem; padding: 4px 12px; margin-bottom: 1rem; }
.deal-slide__title { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1.05; margin-bottom: .75rem; }
.deal-slide__prices { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; font-family: var(--font-mono); }
.deal-slide__orig { text-decoration: line-through; opacity: .55; }
.deal-slide__new { font-size: 1.5rem; font-weight: 700; }
.deal-slide__shop { opacity: .7; font-size: .8rem; }
.deal-slide__cta { font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; border-bottom: 2px solid var(--paper); padding-bottom: 3px; }
.deal-dots { position: absolute; bottom: 1.25rem; right: 2rem; z-index: 3; display: flex; gap: 8px; }
.deal-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background .2s; }
.deal-dot.is-active { background: var(--paper); }
@media (max-width: 700px) {
  .deals-slideshow { aspect-ratio: 4/3; }
  .deal-slide__info { padding: 1.5rem; max-width: 90%; }
  .deal-slide__title { font-size: 1.4rem; }
}

/* ── Community-Feed ("Neues aus der Community") ── */
.community-feed { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }
.community-item { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; background: var(--ink); color: var(--paper); text-decoration: none; transition: background .15s; }
.community-item:hover { background: #181818; }
.community-item__icon { font-size: 1.1rem; flex-shrink: 0; }
.community-item__main { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.community-item__title { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.community-item__forum { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .45; }
.community-item__replies { font-family: var(--font-mono); font-size: .72rem; opacity: .6; flex-shrink: 0; }
.community-item__date { font-family: var(--font-mono); font-size: .72rem; opacity: .5; flex-shrink: 0; }
@media (max-width: 600px) { .community-item__date { display: none; } }
.community-empty { padding: 3rem 2rem; text-align: center; background: var(--ink); color: var(--paper); }
.community-empty__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.community-empty p { opacity: .6; max-width: 440px; margin: 0 auto; }

/* Zurück-zur-Spielesuche-Button bei "Über das Spiel" */
.gw-back-to-search { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; white-space: nowrap; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; padding: 8px 16px; border: 1px solid var(--ink); border-radius: 8px; color: var(--ink); transition: background .15s, color .15s; }
.gw-back-to-search:hover { background: var(--ink); color: var(--paper); }

/* Platzhalter für leere Forum-Threadliste */
.threads-empty { text-align: center; padding: 3rem 2rem; border: 1px dashed rgba(0,0,0,.2); border-radius: 4px; }
.threads-empty__icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; opacity: .5; }
.threads-empty__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 0 0 .5rem; }
.threads-empty__text { opacity: .6; max-width: 420px; margin: 0 auto; font-size: .95rem; }
.section--dark .threads-empty { border-color: rgba(255,255,255,.25); }
