/* httpdocs/public/assets/css/style.css */

/* =========================
   ROOT / THEME (B/W + Accent)
   ========================= */
:root{
  /* Base (Schwarz/Weiß) */
  --bg:#050505;
  --panel:#0b0b0b;
  --panel2:#0f0f0f;
  --text:#f5f5f5;
  --muted:rgba(245,245,245,.68);
  --border:rgba(245,245,245,.14);

  /* Accent (später easy ergänzen) */
  --accent:#ffffff;     /* default: weiß */
  --accent2:#bdbdbd;
  --danger:#ffffff;     /* später z.B. rot */

  /* FX */
  --shadow: 0 12px 30px rgba(0,0,0,.55);
  --rough: 1.6px;       /* “Wackel”-Stärke */
  --radius: 16px;

  --paper:#0a0a0a;          /* “Zeitung” bleibt dunkel */
  --paper-ink: rgba(245,245,245,.92);
  --paper-dirt: rgba(245,245,245,.08);
  --torn: rgba(245,245,245,.18);
  --tilt: .7deg;
}

/* =========================
   BASE
   ========================= */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  display:flex;
  flex-direction:column;
  letter-spacing:.2px;
  min-height: 100%;
}
main{ flex: 1 0 auto; }
.site-footer{ margin-top:auto; }
.container{
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
}

.container-wide{
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
}
/* Grain/Noise Overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:.08;
  mix-blend-mode:overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.10) 0 1px, transparent 1px 4px);
}

/* Off-register / Druckfehler (leicht) */
h1,h2,h3,.brand,.card-title{
  text-shadow:
    calc(var(--rough) * -1) 0 rgba(255,255,255,.16),
    var(--rough) 0 rgba(0,0,0,.65);
}
h1,h2,h3{color:var(--text);}

/* Punk-Zine Links */
a{
  color:inherit;
  text-decoration-thickness:2px;
  text-underline-offset:4px;
  text-decoration-color: rgba(245,245,245,.45);
}
a:hover{ text-decoration-color: rgba(245,245,245,.9); }

.muted{color:var(--muted)}

/* =========================
   HEADER / NAV
   ========================= */
.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.78);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.8px;
}
.brand span{font-weight:400;color:var(--muted)}
.brand-logo{height:70px;width:auto;display:block}

.nav{display:flex;gap:18px;flex-wrap:wrap;align-items:center}

/* Desktop Nav: Zine/Marker Look */
.nav a{
  position:relative;
  text-decoration:none;
  color: rgba(245,245,245,.72);
  padding: 6px 0;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  transform: translateZ(0);
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:3px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
  transition: width .14s steps(4,end);
}
.nav a:hover{
  color: rgba(245,245,245,.98);
  transform: rotate(-.2deg);
}
.nav a:hover::after{width:100%}
.nav a.active{color: rgba(245,245,245,.98)}
.nav a.active::after{width:100%}

/* =========================
   MOBILE NAV (Dropdown)
   ========================= */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  padding:10px;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.nav-toggle span{
  display:block;
  width:18px;height:2px;
  background: rgba(245,245,245,.9);
  border-radius:2px;
}

.nav-mobile{
  display:none;
  padding: 10px 18px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
}
.nav-mobile.is-open{display:block}

.nav-mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  text-decoration:none;
  color: rgba(245,245,245,.78);
  border:1px solid transparent;
}
.nav-mobile a.active,
.nav-mobile a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.nav-mobile a:first-child{
  font-weight:900;
  margin-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:14px;
}

/* Mobile rules: keine Desktop-Animationen */
@media (max-width: 820px){
  .nav-desktop{display:none;}
  .nav-toggle{display:inline-flex;}
  .brand-logo{height:56px;}
  .nav a::after{display:none !important;}
}

/* =========================
   LAYOUT / SECTIONS
   ========================= */
.section{margin:22px 0}

.section-head{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin: 28px 0 12px;
  padding-bottom: 10px;
}

.section-head h2{
  position:relative;
  margin:0;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform:uppercase;
  padding: 8px 12px 6px;
  display:inline-block;
}

/* “Tape” hinter der Überschrift */
.section-head h2::before{
  content:"";
  position:absolute;
  left:-10px; right:-10px;
  top:50%;
  height: 70%;
  transform: translateY(-50%) rotate(-1.3deg);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  z-index:-1;
}

/* “Marker underline” */
.section-head h2::after{
  content:"";
  position:absolute;
  left:10px;
  right:18px;
  bottom:2px;
  height:4px;
  background: rgba(255,255,255,.85);
  opacity:.22;
  transform: rotate(-.8deg);
  border-radius: 999px;
}

/* Mehr ansehen -> als “Sticker Link” */
.section-head .link{
  position:relative;
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.9px;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  transform: rotate(1deg);
}

.section-head .link:hover{
  background: rgba(255,255,255,.10);
  transform: rotate(-1deg);
  text-decoration:none;
}
.link{
  color: rgba(245,245,245,.80);
  text-decoration:none;
}
.link:hover{color:var(--text); text-decoration:underline}

.badge{
  font-size:12px;color:var(--muted);
  border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;border-radius:999px;
  background: rgba(255,255,255,.04);
}

/* Grids */
.grid{display:grid;gap:14px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){.grid-3{grid-template-columns:1fr}}
@media (max-width:700px){.grid-2{grid-template-columns:1fr}}

/* =========================
   CARDS (Sticker/Tape/Zine)
   ========================= */
/* 1) Cards: Layout stabil + "Mehr ansehen" immer unten */
.card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.card .link{
  margin-top:auto;               /* <- push to bottom */
  display:inline-flex;
  align-items:center;
  gap:8px;
  opacity:.92;
}

/* Card-Link wie zerrissener Footer-Streifen */
.card .link{
  padding:8px 10px;
  border:1px dashed rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  text-transform:uppercase;
  font-weight:1000;
  letter-spacing:.8px;
  transform: rotate(-.4deg);
}
.card .link:hover{
  background: rgba(255,255,255,.10);
  transform: rotate(.6deg);
}

/* 2) Weniger "Durcheinander": Tilt standard AUS, nur auf Hover minimal */
:root{ --tilt: 0deg; } /* vorher .7deg -> macht es zu wacklig */

.grid > *:nth-child(even) .card,
.grid > article:nth-child(even),
.grid > div:nth-child(even){
  transform: none !important;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.65) !important;
}

/* falls irgendwo h3/p schwarz werden */
.card .card-title,
.card p,
.card .muted,
.card .chip,
.card .date,
.card .pill,
.card a{
  color: inherit;
}

.card .muted{ color: rgba(245,245,245,.72) !important; }

/* “NEWS / DATE” oben wieder sichtbar (bei dir war es ultra hell/weg) */
.card-top{
  opacity: 1 !important;
}
.card-top .chip{
  background: rgba(255,255,255,.04) !important;
}

/* wenn irgendein globales CSS article { background:#fff } macht */
article.card,
div.card{
  background-color: rgba(255,255,255,.03) !important;
}

@media (min-width: 901px){
  .card:hover{
    transform: rotate(-.6deg) translateY(-2px) !important;
  }
  .grid > *:nth-child(even) .card:hover,
  .grid > article:nth-child(even):hover,
  .grid > div:nth-child(even):hover{
    transform: rotate(.6deg) translateY(-2px) !important;
  }
}

/* 3) Section-Head: "Mehr ansehen" unten rechts (immer gleich, nicht floating) */
.section-head{
  position:relative;
  padding-bottom: 18px;          /* Platz für Link unten */
  margin-bottom: 12px;
}

.section-head .link{
  position:absolute;
  right:0;
  bottom:0;                      /* <- fix unten */
  transform: rotate(1deg);
}

/* Auf Mobile wieder normal untereinander */
@media (max-width: 700px){
  .section-head{
    padding-bottom: 0;
  }
  .section-head .link{
    position:static;
    margin-top:10px;
    align-self:flex-start;
    transform:none;
    display:inline-flex;
  }
}

/* 4) Section Titel: weniger clean, mehr "Poster" – aber einheitlich */
.section-head h2{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.45);
  transform: rotate(-.5deg);
}

/* kleines "cutout" unten */
.section-head h2::after{
  opacity:.28;
  height:5px;
}

/* 5) Sticker-Wall: punkig, aber geordnet (horizontal scroll statt Chaos) */
.stickers{
  flex-wrap:nowrap;              /* <- eine Reihe */
  overflow:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.sticker{
  scroll-snap-align: start;
  white-space:nowrap;
  transform:none !important;     /* Rotation raus -> wirkt aufgeräumter */
  border-style:dashed;
  opacity:.95;
}
.sticker:nth-child(odd),
.sticker:nth-child(even){
  transform:none !important;
}

/* optional: nur 2-3 Sticker leicht schief für "Leben" */
.sticker:nth-child(1){ transform: rotate(-1deg) !important; }
.sticker:nth-child(3){ transform: rotate(1deg) !important; }
.sticker:nth-child(5){ transform: rotate(-.6deg) !important; }

/* 6) Buttons: noch mehr "Punch" + sichtbarer */
.btn{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 14px 30px rgba(0,0,0,.55);
}
.btn.secondary{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}

/* 7) Highlights Card Top (Chip/Date) etwas “ruckeliger”, aber clean */
.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.date{
  padding:4px 8px;
  border:1px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
  transform: rotate(-1deg);
  letter-spacing:.6px;
  text-transform:uppercase;
}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:12px;
}
.row-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

/* =========================
   BUTTONS (brighter, more punk)
   ========================= */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);              /* heller */
  border:1px solid rgba(255,255,255,.42);         /* stärker */
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.9px;
  text-transform:uppercase;
  position:relative;
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
}

.btn:hover{
  background: rgba(255,255,255,.16);
  transform: rotate(-.3deg) translateY(-1px);
}

.btn.secondary{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.26);
  opacity: 1;
}

/* =========================
   HERO
   ========================= */
.hero-wrap{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.92)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-pos, center);
  filter: saturate(1.05) contrast(1.05);
  opacity: .96;
}
/* extra “xerox” scratches auf hero */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.10;
  pointer-events:none;
  background:
    repeating-linear-gradient(-12deg, rgba(255,255,255,.10) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.14), transparent 40%);
  mix-blend-mode:overlay;
}
.hero-inner{position:relative; z-index:2;}
.hero-copy{max-width:780px}
.hero-h1{
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: 1px;
  margin:0;
  font-weight:1000;
  text-transform:uppercase;
}
.hero-p{
  color: rgba(245,245,245,.80);
  max-width: 70ch;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

/* =========================
   CONTENT WRAP
   ========================= */
.content-wrap{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 26px 0 50px;
}

/* Mobile Hero */
@media (max-width: 700px){
  .hero-wrap{min-height: 460px}
  .section-head h2{font-size:22px}
  .card-title{font-size:20px}
}

/* =========================
   BAND: Backstage-ID Style (anders als Zeitung)
   ========================= */
.card.member{
  clip-path: none;                    /* Zeitung aus */
  transform: none;                    /* nicht schief */
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.14);
}

.card.member::before{ opacity:.08; }
.card.member::after{
  content:"";
  position:absolute;
  left:14px;
  top:14px;
  width:80px;
  height:18px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  transform: rotate(-6deg);
  opacity:.9;
}

/* Instrument/Role als fette Headline */
.member-role{
  display:inline-block;
  margin-top:6px;
  font-weight:1000;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius: 999px;
  border:1px dashed rgba(255,255,255,.30);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
}
.member-photo{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}
.member-photo img{
  width:84px;height:84px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.avatar{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  font-weight:1000;
}
.card.member .avatar{
  width:84px;height:84px;
  border-radius:999px;
  font-size:24px;
}

/* =========================
   SIMPLE TIMELINE (Home)
   ========================= */
.timeline{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.timeline li{color:var(--muted)}
.timeline .year{display:inline-block;min-width:64px;color:var(--text);font-weight:1000}

/* =========================
   HISTORY SIDE SLOGANS (Desktop only)
   ========================= */
.history-grid{
  display:grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 18px;
  align-items:start;
}

.history-side{
  position:sticky;
  top: 110px;                  /* unter header */
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top: 12px;
}

.side-sticker{
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  font-weight:1000;
  letter-spacing:1px;
  text-transform:uppercase;
  box-shadow: 0 14px 28px rgba(0,0,0,.45);
}
.history-side.left .side-sticker{ transform: rotate(-2deg); }
.history-side.right .side-sticker{ transform: rotate(2deg); }

/* Mobile/normal screens: Seiten weg */
@media (max-width: 1100px){
  .history-grid{ grid-template-columns: 1fr; }
  .history-side{ display:none; }
}

/* =========================
   HISTORY TIMELINE (rotzig / stamped)
   ========================= */
.history-timeline{ padding: 70px 0 90px; }

.timeline-item{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 22px 0 30px;
  position:relative;
}

/* Linie = “abgerieben” */
.timeline-item::before{
  content:"";
  position:absolute;
  left: 78px;
  top: 0;
  bottom: 0;
  width:2px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.22),
      rgba(255,255,255,.08),
      rgba(255,255,255,.18)
    );
  opacity:.65;
  filter: blur(.1px);
}

/* Punkt = “Tape + Dreck” */
.timeline-item::after{
  content:"";
  position:absolute;
  left: 78px;
  top: 30px;
  width:14px;
  height:14px;
  transform: translateX(-50%);
  border-radius:999px;
  background: rgba(255,255,255,.92);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.10),
    0 10px 18px rgba(0,0,0,.45);
  border: 1px solid rgba(0,0,0,.35);
}

/* YEAR = STAMP / CUTOUT */
.timeline-year{
  position:relative;
  display:inline-block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: 1.6px;
  text-transform:uppercase;

  padding: 10px 12px 8px;
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.40);

  /* “schief & rotzig” */
  transform: rotate(-5deg);
  filter: contrast(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.50);

  /* zerrissene Kante */
  clip-path: polygon(
    0% 10%, 7% 4%, 16% 10%, 26% 3%, 36% 10%, 46% 4%, 56% 10%, 66% 3%, 76% 10%, 86% 4%, 100% 10%,
    100% 90%, 92% 96%, 84% 90%, 74% 97%, 64% 90%, 54% 96%, 44% 90%, 34% 97%, 24% 90%, 14% 96%, 0% 90%
  );

  /* mini jitter */
  animation: stampJitter 2.4s steps(2,end) infinite;
}

/* “Druckfehler / Doppelprint” */
.timeline-year::before,
.timeline-year::after{
  content: attr(data-year);
  position:absolute;
  left:0; top:0;
  width:100%;
  height:100%;
  padding: inherit;
  clip-path: inherit;
  border: inherit;
  background: transparent;
  pointer-events:none;
  opacity:.35;
}

.timeline-year::before{
  transform: translate(-2px, 0);
}
.timeline-year::after{
  transform: translate(2px, 0);
  opacity:.22;
}

@keyframes stampJitter{
  0%{ transform: rotate(-5deg) translate(0,0); }
  15%{ transform: rotate(-5deg) translate(-1px,0); }
  30%{ transform: rotate(-6deg) translate(1px,-1px); }
  60%{ transform: rotate(-5deg) translate(0,0); }
  75%{ transform: rotate(-4deg) translate(1px,1px); }
  100%{ transform: rotate(-5deg) translate(0,0); }
}

/* Timeline Card (nenne sie timeline-card, nicht timeline-content) */
.timeline-card{
  position:relative;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding:16px 16px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  overflow:hidden;
}

/* Kopierer-Kratzer */
.timeline-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  opacity:.12;
  pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.16) 0 1px, transparent 1px 7px);
  transform: rotate(-2deg);
  mix-blend-mode: overlay;
}

/* “Tape” Ecke */
.timeline-card::after{
  content:"";
  position:absolute;
  top:-10px;
  right:16px;
  width:120px;
  height:28px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  transform: rotate(6deg);
  opacity:.85;
}

.timeline-card h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:1000;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.timeline-card p{
  margin:0;
  color: rgba(245,245,245,.75);
  line-height: 1.65;
}

.timeline-item:last-child::before{ bottom: 14px; }

/* Mobile */
@media (max-width: 800px){
  .timeline-item{
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }
  .timeline-item::before{ left: 52px; }
  .timeline-item::after{ left: 52px; }
  .timeline-year{
    font-size:18px;
    padding: 8px 10px 7px;
  }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.70);
}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* =========================
   STICKER WALL
   ========================= */
.sticker-wall{ padding: 14px 0 0; }
.stickers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sticker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  font-weight:1000;
  letter-spacing:.9px;
  text-transform:uppercase;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.sticker:nth-child(odd){ transform: rotate(-1deg); }
.sticker:nth-child(even){ transform: rotate(1deg); }

/* =========================
   HERO H1: stencil / spray
   ========================= */
.hero-stencil{
  display:inline-grid;
  grid-auto-flow: row;
  gap: 6px;
  line-height: .92;
  margin:0;
  position:relative;
  padding: 14px 16px 12px;
  transform: rotate(-1.2deg);
}

/* Tape/Platte dahinter */
.hero-stencil::before{
  content:"";
  position:absolute;
  inset: -10px -16px -10px -16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  z-index:-1;
  clip-path: polygon(
    0% 12%, 6% 6%, 14% 12%, 24% 7%, 36% 12%, 48% 7%, 60% 12%, 72% 7%, 84% 12%, 94% 8%, 100% 12%,
    100% 88%, 94% 94%, 86% 88%, 76% 93%, 64% 88%, 52% 94%, 40% 88%, 28% 93%, 16% 88%, 6% 94%, 0% 88%
  );
}

/* “Spray/Grunge” Partikel */
.hero-stencil::after{
  content:"";
  position:absolute;
  left:-18px;
  top:10px;
  width:18px;height:18px;
  border-radius:999px;
  background: rgba(255,255,255,.18);
  box-shadow:
    14px 10px 0 rgba(255,255,255,.10),
    26px -4px 0 rgba(255,255,255,.08),
    36px 14px 0 rgba(255,255,255,.06);
  opacity:.75;
  filter: blur(.15px);
}

/* Top/Bottom = Stencil */
.hero-stencil .st-top,
.hero-stencil .st-bot{
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(44px, 6vw, 76px);
  color: rgba(255,255,255,.97);
  position:relative;

  /* Doppelprint / off-register */
  text-shadow:
    -2px 0 rgba(255,255,255,.12),
     2px 0 rgba(0,0,0,.60),
     0 4px rgba(0,0,0,.70);

  /* rough edge via mask (abgenutzt) */
  -webkit-mask-image:
    radial-gradient(circle at 18% 26%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 58%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 82%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    linear-gradient(#000, #000);
  mask-image:
    radial-gradient(circle at 18% 26%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 58%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 82%, rgba(0,0,0,.85) 0 2px, transparent 3px),
    linear-gradient(#000, #000);
}

/* “aber” = kleiner, cutout/marker */
.hero-stencil .st-mid{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.78);
  width: fit-content;
  padding: 6px 10px 5px;
  border: 1px dashed rgba(255,255,255,.32);
  background: rgba(0,0,0,.28);
  transform: rotate(1.3deg);
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
}

/* Optional: bisschen “jitter” nur desktop */
@media (hover:hover){
  .hero-stencil:hover{ transform: rotate(-.6deg); }
}

/* Mobile: weniger schief, weniger Padding */
@media (max-width: 700px){
  .hero-stencil{ transform:none; padding: 10px 12px 10px; }
  .hero-stencil::before{ inset: -8px -12px -8px -12px; }
  .hero-stencil .st-top,
  .hero-stencil .st-bot{ letter-spacing: 2.5px; }
}

/* =========================
   HERO CTA: tape/stencil, visible
   ========================= */
.hero-actions .btn{
  background: rgba(255,255,255,.14) !important;
  border: 1px dashed rgba(255,255,255,.55) !important;
  color: rgba(255,255,255,.96) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.55) !important;
  transform: rotate(-1deg);
  clip-path: polygon(0% 12%, 6% 6%, 14% 12%, 24% 7%, 36% 12%, 48% 7%, 60% 12%, 72% 7%, 84% 12%, 94% 8%, 100% 12%,
                     100% 88%, 94% 94%, 86% 88%, 76% 93%, 64% 88%, 52% 94%, 40% 88%, 28% 93%, 16% 88%, 6% 94%, 0% 88%);
}
.hero-actions .btn.secondary{
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(255,255,255,.35) !important;
  transform: rotate(1deg);
}
.hero-actions .btn:hover{
  background: rgba(255,255,255,.20) !important;
  transform: rotate(-1deg) translateY(-2px);
}

/* =========================
   NAV: less clean / more punk (not buttony)
   ========================= */
.nav-desktop a{
  padding: 8px 10px;
  color: rgba(245,245,245,.86);
  letter-spacing: 1.2px;
}

/* Tape hinter dem Text */
.nav-desktop a::before{
  content:"";
  position:absolute;
  left:-8px; right:-8px;
  top:50%;
  height: 70%;
  transform: translateY(-50%) rotate(-1.2deg);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  z-index:-1;
  opacity:.9;
}

/* kleine “Nieten” */
.nav-desktop a::after{
  content:"";
  position:absolute;
  left: -14px;
  top: 50%;
  width:6px;height:6px;
  transform: translateY(-50%);
  border-radius:999px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
}

/* Active: mehr “Marker” */
.nav-desktop a.active{
  color: rgba(255,255,255,.98);
}
.nav-desktop a.active::before{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

/* Hover: minimaler Xerox-wiggle */
@media (hover:hover){
  .nav-desktop a:hover{
    transform: rotate(-.6deg);
  }
}
/* =========================
   ZINE MODAL (Bandmitglieder)
   ========================= */
body.modal-open{ overflow:hidden; }

.zine-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
}
.zine-modal.is-open{ display:block; }

.zine-modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.zine-modal__panel{
  position:relative;
  width:min(980px, calc(100vw - 26px));
  margin: 8vh auto;
  background: rgba(10,10,10,.94);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.7);
  border-radius: 18px;
  overflow:hidden;

  /* “Zeitung / zerrissen” */
  clip-path: polygon(
    0% 6%, 6% 3%, 14% 6%, 24% 2%, 36% 6%, 48% 2%, 60% 6%, 72% 3%, 84% 6%, 94% 3%, 100% 6%,
    100% 94%, 94% 97%, 86% 94%, 76% 98%, 64% 94%, 52% 98%, 40% 94%, 28% 98%, 16% 94%, 6% 97%, 0% 94%
  );
}
.zine-modal__panel::before{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  opacity:.10;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 1px, transparent 1px 7px);
  transform: rotate(-2deg);
  mix-blend-mode: overlay;
}

.zine-modal__close{
  position:absolute;
  top:12px; right:12px;
  width:42px; height:42px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  z-index:2;
}
.zine-modal__close:hover{
  background: rgba(255,255,255,.10);
  transform: rotate(-.6deg);
}

.zine-modal__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:0;
}

.zine-modal__media{
  margin:0;
  border-right:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  min-height: 420px;
}
.zine-modal__media img{
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

.zine-modal__content{
  padding: 22px 22px 20px;
}

.zine-modal__kicker{
  display:inline-block;
  font-weight: 1000;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 10px 6px;
  border:1px dashed rgba(255,255,255,.32);
  background: rgba(255,255,255,.05);
  transform: rotate(-1deg);
  margin-bottom: 10px;
}

.zine-modal__title{
  margin: 0;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zine-modal__meta{
  margin-top: 10px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(245,245,245,.88);
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.zine-modal__line{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 16px 0 14px;
}

.zine-modal__text p{
  margin:0;
  color: rgba(245,245,245,.78);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 820px){
  .zine-modal__panel{ margin: 5vh auto; }
  .zine-modal__grid{ grid-template-columns: 1fr; }
  .zine-modal__media{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.10);
    min-height: 280px;
  }
  .zine-modal__title{ font-size: 26px; }
}

/* =========================
   404 / 500 PAGE
   ========================= */

.punk-logo{
  width: 180px;
  height:auto;
  display:block;
  margin: 0 0 16px;
  filter: contrast(1.05);
  opacity:.95;
}

.tv{
  position:relative;
}

/* Scanlines + Noise + “Signal springt” */
.tv::before{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  opacity:.20;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.20) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
  animation: scanMove 1.4s linear infinite;
}

.tv::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.14;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.20), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 55%),
    repeating-linear-gradient(-15deg, rgba(255,255,255,.10) 0 1px, transparent 1px 10px);
  animation: noiseJitter .25s steps(2,end) infinite;
  mix-blend-mode: overlay;
}

@keyframes scanMove{
  0%{ transform: translateY(-12px); }
  100%{ transform: translateY(12px); }
}
@keyframes noiseJitter{
  0%{ transform: translate(0,0); }
  25%{ transform: translate(-2px,1px); }
  50%{ transform: translate(2px,-1px); }
  75%{ transform: translate(-1px,-2px); }
  100%{ transform: translate(1px,2px); }
}

/* Text Glitch (RGB Split ohne Farben -> nur “Shadow split”) */
.glitch{
  position:relative;
  display:inline-block;
  animation: glitchShift 1.2s infinite steps(2,end);
}
.glitch::before,
.glitch::after{
  content: attr(data-text);
  position:absolute;
  left:0; top:0;
  width:100%;
  overflow:hidden;
  opacity:.55;
}
.glitch::before{
  transform: translate(-2px,0);
  clip-path: inset(0 0 55% 0);
}
.glitch::after{
  transform: translate(2px,0);
  clip-path: inset(55% 0 0 0);
}
@keyframes glitchShift{
  0%{ transform: translate(0,0) skewX(0deg); }
  10%{ transform: translate(-1px,0) skewX(-2deg); }
  20%{ transform: translate(2px,0) skewX(2deg); }
  35%{ transform: translate(-2px,1px) skewX(-3deg); }
  50%{ transform: translate(0,0) skewX(0deg); }
  65%{ transform: translate(1px,-1px) skewX(2deg); }
  80%{ transform: translate(-1px,0) skewX(-2deg); }
  100%{ transform: translate(0,0) skewX(0deg); }
}

/* Sticker Strip */
.sticker-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.sticker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  font-weight:1000;
  letter-spacing:.8px;
  text-transform:uppercase;
  border-radius: 10px;
  transform: rotate(-1deg);
}
.sticker:nth-child(2){ transform: rotate(1deg); }
.sticker:nth-child(3){ transform: rotate(-2deg); }

.punk-404{
  min-height: 70vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.10);
}
.punk-404::before{
  content:"";
  position:absolute;
  inset:-20%;
  opacity:.12;
  pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.20), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.14), transparent 50%);
  transform: rotate(-3deg);
}
.punk-404-inner{
  position:relative;
  padding: 46px 18px;
}
.punk-stamp{
  display:inline-block;
  font-weight:1000;
  font-size: 64px;
  letter-spacing: 2px;
  padding: 8px 14px;
  border:2px dashed rgba(255,255,255,.55);
  transform: rotate(-6deg);
  text-transform:uppercase;
  margin-bottom: 18px;
  background: rgba(255,255,255,.04);
}
.punk-title{
  margin:0;
  font-size: clamp(26px, 4vw, 48px);
  font-weight:1000;
  letter-spacing:1px;
  text-transform:uppercase;
}
.punk-sub{
  margin: 12px 0 0;
  color: rgba(245,245,245,.75);
  max-width: 70ch;
  line-height:1.7;
}
.punk-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.punk-note{
  margin-top: 26px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  position:relative;
}
.punk-note::after{
  content:"";
  position:absolute;
  top:-10px;
  left:22px;
  width:130px;
  height:28px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  transform: rotate(-4deg);
  opacity:.9;
}

.wall-form input, .wall-form textarea{
  width:100%;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
}
.wall-form textarea{ resize: vertical; min-height: 110px; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width: 720px){ .grid2{ grid-template-columns: 1fr; } }

.row{ display:flex; align-items:center; gap:12px; }
.mt{ margin-top: 12px; }

.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.wall-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){ .wall-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px){ .wall-grid{ grid-template-columns: 1fr; } }

.tag{
  transform: rotate(var(--r, 0deg));
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.tag::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.35), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(34,197,94,.25), transparent 55%);
  filter: blur(12px);
  opacity: .8;
  pointer-events:none;
}
.tag-inner{
  position:relative;
  padding: 14px 14px 16px;
  background: rgba(17,24,39,.72);
  backdrop-filter: blur(8px);
}
.tag-head{
  display:flex; justify-content:space-between; gap:10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.tag-user{
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.tag-msg{
  font-size: 15px;
  line-height: 1.35;
}

/* 8 „Spray-Farben“ (nur Akzente) */
.tag-1{ outline: 1px solid rgba(168,85,247,.35); }
.tag-2{ outline: 1px solid rgba(34,197,94,.35); }
.tag-3{ outline: 1px solid rgba(59,130,246,.35); }
.tag-4{ outline: 1px solid rgba(245,158,11,.35); }
.tag-5{ outline: 1px solid rgba(239,68,68,.35); }
.tag-6{ outline: 1px solid rgba(236,72,153,.35); }
.tag-7{ outline: 1px solid rgba(14,165,233,.35); }
.tag-8{ outline: 1px solid rgba(163,230,53,.35); }

/* Desktop: Custom Cursor */
@media (hover:hover) and (pointer:fine) {
  body {
    cursor: url("/assets/cursor/guitar.svg") 16 16, auto;
  }

  /* Optional: auf Links anderer Cursor */
  a, button, .btn, [role="button"], input[type="submit"] {
    cursor: url("/assets/cursor/drum.svg") 16 16, pointer;
  }
}