/* ===================================================
   SIGNALNULL – Satire Verschwörungstheorie Website
   CSS Stylesheet
   =================================================== */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #161622;
  --accent-red: #cc0000;
  --accent-red-bright: #ff2222;
  --accent-green: #00cc44;
  --accent-green-dim: #007722;
  --accent-yellow: #ffcc00;
  --accent-orange: #ff7700;
  --accent-purple: #7722cc;
  --accent-blue: #1144cc;
  --text-primary: #e8e8ee;
  --text-secondary: #aaaacc;
  --text-dim: #666688;
  --border-color: #2a2a3a;
  --border-glow: #cc000044;
  --glow-red: 0 0 15px #cc000066;
  --glow-green: 0 0 15px #00cc4444;
  --font-main: 'Segoe UI', 'Arial', sans-serif;
  --font-mono: 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-red);
  text-decoration: none;
}

a:hover {
  color: var(--accent-red-bright);
  text-decoration: underline;
}

/* ===================================================
   WARNUNG POPUP
   =================================================== */
.warnung-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.warnung-box {
  background: #0e0e18;
  border: 2px solid var(--accent-red);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--glow-red), inset 0 0 40px #cc000011;
  animation: warnungPulse 2s ease-in-out infinite;
}

@keyframes warnungPulse {
  0%, 100% { border-color: var(--accent-red); box-shadow: var(--glow-red); }
  50% { border-color: #ff4444; box-shadow: 0 0 30px #cc000099; }
}

.warnung-header {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-red-bright);
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.warnung-icon {
  font-size: 1.6rem;
  margin: 0 0.4rem;
}

.warnung-box p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.warnung-klein {
  color: var(--text-secondary) !important;
  font-size: 0.85rem !important;
  border: 1px solid var(--border-color);
  padding: 0.6rem;
  border-radius: 4px;
  background: #0a0a14;
}

.warnung-btn {
  margin-top: 1.2rem;
  background: var(--accent-red);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
}

.warnung-btn:hover {
  background: var(--accent-red-bright);
  transform: scale(1.02);
}

.warnung-disclaimer {
  margin-top: 1rem !important;
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

/* ===================================================
   TICKER
   =================================================== */
.ticker-container {
  background: var(--accent-red);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 34px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ticker-label {
  background: #880000;
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  animation: tickerScroll 60s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  background: linear-gradient(180deg, #0a0a14 0%, #0d0d1a 100%);
  border-bottom: 2px solid var(--accent-red);
  box-shadow: 0 4px 20px #cc000033;
  padding: 1rem 0;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.logo-symbol {
  font-size: 3rem;
  filter: drop-shadow(var(--glow-red));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 8px #cc000077); }
  50% { filter: drop-shadow(0 0 20px #ff0000aa); }
}

.site-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--text-primary);
  text-shadow: 0 0 20px #cc000066;
  line-height: 1;
  font-family: var(--font-mono);
}

.site-tagline {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.main-nav a:hover {
  color: var(--text-primary);
  background: #1a1a2a;
  border-color: var(--border-color);
  text-decoration: none;
}

.nav-insider {
  background: #1a0022 !important;
  border-color: var(--accent-purple) !important;
  color: #cc88ff !important;
}

.nav-spenden {
  background: #1a1a00 !important;
  border-color: var(--accent-yellow) !important;
  color: var(--accent-yellow) !important;
}

.header-stats {
  display: flex;
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent-green);
  font-family: var(--font-mono);
}

.censored-count {
  color: var(--accent-red) !important;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================================
   HERO
   =================================================== */
.hero-section {
  background: linear-gradient(135deg, #0a0a14 0%, #100010 50%, #0a0a14 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, #cc000011 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, #7722cc11 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: blink 2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-highlight {
  color: var(--accent-red-bright);
  text-shadow: 0 0 30px #cc000066;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.btn-primary:hover {
  background: var(--accent-red-bright);
  border-color: var(--accent-red-bright);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #cc000055;
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: #1a1a2a;
  color: var(--text-primary);
  border-color: #444466;
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-zensur-warnung {
  background: #1a0000;
  border: 1px solid var(--accent-red);
  border-radius: 4px;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
  color: #ffaaaa;
  display: inline-block;
}

/* ===================================================
   SECTION HEADERS
   =================================================== */
.articles-section,
.beweise-section,
.experten-section,
.kalibrierung-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ===================================================
   FEATURED ARTICLE
   =================================================== */
.featured-article {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.featured-article:hover {
  border-color: var(--accent-red);
  box-shadow: var(--glow-red);
}

.featured-img-wrap {
  position: relative;
}

.fake-img {
  background: linear-gradient(135deg, #1a0000 0%, #220022 50%, #001a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.fake-img-featured {
  height: 100%;
  min-height: 280px;
  aspect-ratio: unset;
  background: linear-gradient(135deg, #150015 0%, #1a0a00 50%, #001515 100%);
}

.fake-img-sm {
  height: 180px;
  aspect-ratio: unset;
}

.fake-img-green { background: linear-gradient(135deg, #001500 0%, #002200 100%); }
.fake-img-purple { background: linear-gradient(135deg, #0f0020 0%, #1a002a 100%); }
.fake-img-orange { background: linear-gradient(135deg, #1a0a00 0%, #221500 100%); }
.fake-img-yellow { background: linear-gradient(135deg, #1a1a00 0%, #222200 100%); }
.fake-img-red { background: linear-gradient(135deg, #1a0000 0%, #220000 100%); }
.fake-img-blue { background: linear-gradient(135deg, #000e1a 0%, #001522 100%); }
.fake-img-matrix {
  background: #000;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 2px, #00110022 2px, #00110022 4px
  );
}

.fake-img-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.fake-img-icon {
  font-size: 4rem;
  opacity: 0.4;
  filter: grayscale(50%);
}

.fake-img-sm .fake-img-icon {
  font-size: 3rem;
}

.zensiert-stempel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  background: var(--accent-red);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  padding: 0.3rem 1.5rem;
  border: 3px solid #fff;
  border-radius: 4px;
  opacity: 0.85;
  pointer-events: none;
  text-shadow: none;
  font-family: var(--font-mono);
}

.zensiert-badge-sm {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.exklusiv-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent-yellow);
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.gefahr-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.gefahr-5 {
  background: var(--accent-red);
  color: #fff;
}

.featured-content {
  padding: 2rem;
}

.artikel-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.kategorie {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.kat-impf { background: #1a0000; color: #ff6666; border: 1px solid #cc0000; }
.kat-5g { background: #001a00; color: #66ff88; border: 1px solid #00aa33; }
.kat-chemtrail { background: #001122; color: #66aaff; border: 1px solid #0055aa; }
.kat-illuminati { background: #1a0033; color: #cc88ff; border: 1px solid #7700cc; }
.kat-natur { background: #1a1100; color: #ffcc44; border: 1px solid #aa8800; }
.kat-wetter { background: #001122; color: #88ccff; border: 1px solid #005588; }
.kat-food { background: #111a00; color: #aaff44; border: 1px solid #558800; }
.kat-tiere { background: #1a1100; color: #ffaa44; border: 1px solid #aa6600; }
.kat-pharma { background: #1a0011; color: #ff88aa; border: 1px solid #cc0044; }
.kat-erde { background: #001111; color: #44ffee; border: 1px solid #008877; }

.datum, .lesezeit {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.artikel-titel {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.artikel-titel a {
  color: var(--text-primary);
}

.artikel-titel a:hover {
  color: var(--accent-red-bright);
  text-decoration: none;
}

.artikel-teaser {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ===================================================
   BEWEIS METER
   =================================================== */
.beweis-meter {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
}

.beweis-label {
  color: var(--text-dim);
  white-space: nowrap;
}

.beweis-bar {
  flex: 1;
  height: 6px;
  background: #1a1a2a;
  border-radius: 3px;
  overflow: hidden;
  min-width: 80px;
}

.beweis-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green-dim), var(--accent-green));
  border-radius: 3px;
  transition: width 1s ease;
}

.beweis-prozent {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.artikel-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-lesen {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--accent-red);
  color: #fff;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-lesen:hover {
  background: var(--accent-red-bright);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
}

.share-btns {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.share-btn {
  background: #1a1a2a;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  transition: all 0.2s;
}

.share-btn:hover {
  background: #222233;
  color: var(--text-primary);
}

.share-btn.shared {
  background: #002200;
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.share-count {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ===================================================
   ARTIKEL GRID
   =================================================== */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.artikel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.artikel-card:hover {
  border-color: #444466;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.highlight-card {
  border-color: var(--accent-purple) !important;
  background: linear-gradient(180deg, #0f0020 0%, var(--bg-card) 100%);
}

.highlight-card:hover {
  border-color: #aa44ff !important;
  box-shadow: 0 8px 30px #7722cc44 !important;
}

.artikel-card-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.artikel-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

.artikel-card h3 a {
  color: var(--text-primary);
}

.artikel-card h3 a:hover {
  color: var(--accent-red-bright);
  text-decoration: none;
}

.artikel-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.artikel-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag {
  background: #1a1a2a;
  border: 1px solid #2a2a3a;
  color: var(--text-dim);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
}

.btn-klein {
  font-size: 0.82rem;
  color: var(--accent-red);
  font-weight: 600;
  margin-top: auto;
  display: inline-block;
}

.btn-klein:hover {
  color: var(--accent-red-bright);
  text-decoration: none;
}

/* ===================================================
   BEWEISE SECTION
   =================================================== */
.beweise-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a16 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  max-width: 100% !important;
  padding: 3rem 0 !important;
}

.beweise-section .section-header,
.beweise-grid,
.beweis-zahlen {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.beweise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.beweis-karte {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.beweis-karte:hover {
  border-color: var(--accent-green-dim);
}

.beweis-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.beweis-karte h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.beweis-karte p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.beweis-quote {
  border-left: 3px solid var(--accent-green-dim);
  padding-left: 0.8rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
}

.beweis-quote em {
  display: block;
  margin-top: 0.3rem;
  color: var(--accent-green-dim);
}

.beweis-zahlen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.zahl-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem 1rem;
}

.zahl-gross {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  font-family: var(--font-mono);
  text-shadow: 0 0 20px #cc000044;
  margin-bottom: 0.5rem;
}

.zahl-label {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ===================================================
   EXPERTEN
   =================================================== */
.experten-section {
  border-bottom: 1px solid var(--border-color);
}

.experten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.experte-karte {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.2s;
}

.experte-karte:hover {
  border-color: #444466;
  transform: translateY(-2px);
}

.experte-foto {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: grayscale(30%);
}

.experte-karte h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.experte-titel {
  font-size: 0.78rem;
  color: var(--accent-yellow);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.experte-bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.experte-fach {
  background: #1a1a2a;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===================================================
   QUIZ / KALIBRIERUNG
   =================================================== */
.kalibrierung-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, #080814 0%, #0a0a18 100%);
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.quiz-fortschritt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fortschritt-bar {
  flex: 1;
  height: 8px;
  background: #1a1a2a;
  border-radius: 4px;
  overflow: hidden;
}

.fortschritt-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
  border-radius: 4px;
  transition: width 0.5s ease;
}

#frage-nummer {
  font-size: 0.82rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.quiz-frage {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.quiz-optionen {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.quiz-option {
  background: #1a1a2a;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.93rem;
  transition: all 0.2s;
  width: 100%;
}

.quiz-option:hover {
  background: #222233;
  border-color: #444466;
  color: var(--text-primary);
  transform: translateX(4px);
}

.quiz-ergebnis {
  max-width: 700px;
  margin: 1.5rem auto 0;
  background: var(--bg-card);
  border: 2px solid var(--accent-yellow);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.ergebnis-titel {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.ergebnis-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ergebnis-punkte {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.ergebnis-hut {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.quiz-neu-btn {
  background: #1a1a2a;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.quiz-neu-btn:hover {
  background: #222233;
  color: var(--text-primary);
}

/* ===================================================
   NEWSLETTER
   =================================================== */
.newsletter-section {
  background: linear-gradient(135deg, #0a0a14, #100022);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 1.5rem;
  text-align: center;
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0.7rem;
  max-width: 550px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  background: #0e0e1a;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.newsletter-input::placeholder {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.newsletter-klein {
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
}

.newsletter-erfolg {
  background: #001a00;
  border: 1px solid var(--accent-green-dim);
  border-radius: 4px;
  padding: 1rem;
  color: var(--accent-green);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===================================================
   INSIDER
   =================================================== */
.insider-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.insider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.insider-login, .insider-vorschau {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.insider-login {
  border-color: var(--accent-purple);
  background: linear-gradient(180deg, #0f0020 0%, var(--bg-card) 100%);
}

.insider-login h3, .insider-vorschau h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.insider-login p, .insider-vorschau p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.login-input {
  background: #0a0014;
  border: 1px solid #441166;
  border-radius: 4px;
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.login-input:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.login-fehler {
  background: #1a0000;
  border: 1px solid var(--accent-red);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  color: #ff8888;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.login-hinweis {
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

.vorschau-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.vorschau-liste li.gesperrt {
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  background: #0e0e18;
  border: 1px solid #1a1a2a;
  border-radius: 4px;
  filter: blur(2px);
  user-select: none;
  transition: filter 0.2s;
  cursor: not-allowed;
}

.vorschau-liste li.gesperrt:hover {
  filter: blur(1px);
}

.insider-preis {
  background: #1a1a00;
  border: 1px solid #444400;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  color: var(--accent-yellow);
}

/* ===================================================
   SPENDEN
   =================================================== */
.spenden-section {
  background: linear-gradient(135deg, #0e0e00, #0a0a14);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 1.5rem;
  text-align: center;
}

.spenden-inner {
  max-width: 700px;
  margin: 0 auto;
}

.spenden-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
}

.spenden-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spenden-optionen {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.spenden-btn {
  background: #1a1a00;
  border: 1px solid #555500;
  color: var(--accent-yellow);
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.spenden-btn:hover, .spenden-empfohlen {
  background: #222200;
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #ffcc0022;
}

.spenden-klein {
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
  font-style: italic;
}

.spenden-danke {
  margin-top: 1rem;
  background: #001a00;
  border: 1px solid var(--accent-green-dim);
  border-radius: 4px;
  padding: 1rem;
  color: var(--accent-green);
  font-size: 0.9rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #060610;
  border-top: 2px solid var(--accent-red);
  padding: 3rem 1.5rem 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

.footer-col p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-secondary);
  text-decoration: none;
}

.gesperrt-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.gesperrt-liste span {
  font-size: 0.78rem;
  color: #cc4444;
  background: #1a0000;
  border: 1px solid #440000;
  border-radius: 3px;
  padding: 0.2rem 0.4rem;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.satire-hinweis {
  background: #0e1a0e;
  border: 1px solid var(--accent-green-dim);
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-size: 0.82rem;
  color: #88cc88;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* ===================================================
   ARTIKEL SEITEN
   =================================================== */
.artikel-seite {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.artikel-seite-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.artikel-seite-titel {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.artikel-seite-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.artikel-bild-placeholder {
  background: linear-gradient(135deg, #1a0000, #001a00);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  margin-bottom: 2rem;
  position: relative;
}

.artikel-seite-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.artikel-seite-body h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 2rem 0 0.8rem;
  font-weight: 700;
}

.artikel-seite-body p {
  margin-bottom: 1.2rem;
}

.artikel-seite-body strong {
  color: var(--text-primary);
}

.artikel-seite-body blockquote {
  border-left: 3px solid var(--accent-red);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #1a0000;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.artikel-seite-body .hinweis-box {
  background: #0e1a0e;
  border: 1px solid var(--accent-green-dim);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: #88cc88;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--text-secondary);
  text-decoration: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  .fake-img-featured {
    min-height: 200px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .insider-grid {
    grid-template-columns: 1fr;
  }
  .beweis-zahlen {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .header-stats {
    display: none;
  }
  .site-title {
    font-size: 1.8rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .beweis-zahlen {
    grid-template-columns: repeat(2, 1fr);
  }
  .spenden-optionen {
    flex-direction: column;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===================================================
   MATRIX REGEN EFFEKT (dekorativ)
   =================================================== */
.matrix-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-green);
  line-height: 1;
}
