/* Grundlayout */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Typografie */
h1, h2, h3 {
  font-family: 'Staatliches', Impact, sans-serif;
  color: #ff3333;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #ff6666;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border-bottom: 3px solid #ff3333;
}
header img {
  max-width: 200px;
  height: auto;
}
header h1 {
  margin: 0.5rem 0 0;
  font-size: 2.2rem;
}

/* Main Content */
main {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 2px solid #ff3333;
}
footer a {
  margin: 0 0.5rem;
}

/* Buttons/Call-to-Action */
.button {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 0.7rem 1.2rem;
  margin-top: 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}
.button:hover {
  background: #fff;
  color: #111;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.6rem;
  }
  main {
    padding: 1rem;
  }
}


/* ===== Punk‑Zine Additions (S3) ===== */

/* Layout helpers */
.hero {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.2fr .8fr; }
}

.grid { display: grid; gap: 18px; }
@media (min-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

.card {
  background: #0f0f0f;
  border: 2px solid #222;
  box-shadow: 6px 6px 0 #000;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.card h3 {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 2px solid #222;
  background: #131313;
  color: #fff;
}
.card .content { padding: 12px 14px; }

/* DIY Poster Look */
.poster {
  background: #111;
  border: 3px solid #000;
  padding: 16px;
  box-shadow: 8px 8px 0 #000, 0 0 0 2px #222 inset;
  transform: rotate(-.6deg);
  position: relative;
  overflow: hidden;
}
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed #2d2d2d;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Cutout Headline */
.title-row { display: flex; flex-wrap: wrap; align-items: baseline; }
.cutout {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: .15em .3em;
  margin: .08em .12em;
  transform: rotate(calc(var(--r, 1) * 1deg));
  box-shadow: 3px 3px 0 #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Staatliches', Impact, sans-serif;
  font-size: 1.4rem;
}
.title-row .cutout:nth-child(odd){ --r:-2 }
.title-row .cutout:nth-child(even){ --r:2 }

.subtitle { color: #c7c7c7; margin-top: .5rem; }

/* Countdown */
.countdown { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.tile {
  background: #000;
  border: 2px solid #333;
  box-shadow: 4px 4px 0 #000;
  padding: 12px 14px;
  min-width: 92px;
  text-align: center;
}
.tile .num { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.tile .lab { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #9aa0a6; }

/* Buttons */
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 2px solid #222;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #000;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #000; }

/* Embeds */
.iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* 2‑Klick Placeholder */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0a0a0a;
  border: 1px dashed #333;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.chip {
  font-size: .85rem;
  color: #bbb;
  background: #161616;
  border: 1px solid #2a2a2a;
  padding: 4px 8px;
  border-radius: 999px;
}

.small { font-size: .86rem; color: #a7a7a7; }
.note { font-size: .95rem; color: #c8c8c8; }
.hl { color: #00ff99; font-weight: 800; }
.hidden { display: none !important; }
