/* ============================================================
   SEBIVAL 2026 — Festival Site
   ============================================================ */

:root {
  --bg: #0e0b14;
  --bg-soft: #16121d;
  --ink: #f6f1e7;
  --ink-dim: #b9b3a6;
  --accent: #ff5a3c;      /* sunset orange */
  --accent-2: #ffd23f;    /* sun yellow   */
  --accent-3: #7be0c2;    /* mint         */
  --accent-4: #c084ff;    /* dusk violet  */
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ----------------------------------------------------- NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  z-index: 50;
  transition: background .25s ease, padding .25s ease, backdrop-filter .25s;
}
.nav--scrolled {
  background: rgba(14, 11, 20, .75);
  backdrop-filter: blur(14px);
  padding: 10px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__brand img {
  height: 47px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .15s, background .2s;
}
.nav__cta:hover { transform: translateY(-2px); background: #ff7558; }

@media (max-width: 720px) {
  .nav { padding: 12px 18px; }
  .nav__links { display: none; }
}

/* ----------------------------------------------------- HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(255,210,63,.35), transparent 60%),
    radial-gradient(50% 50% at 80% 30%, rgba(192,132,255,.35), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(255,90,60,.55), transparent 65%),
    linear-gradient(180deg, #1a1226 0%, #0e0b14 100%);
  animation: hueShift 18s ease-in-out infinite alternate;
}
@keyframes hueShift {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(20deg); }
}

.hero__grain {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content { max-width: 980px; }

.hero__sticker {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  background: var(--accent-2);
  color: #1a1226;
  padding: 6px 18px;
  border-radius: 999px;
  transform: rotate(-3deg);
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(255,210,63,.35);
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 22vw, 280px);
  line-height: .85;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  text-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.hero__title-line { display: block; }
.hero__title-line:not(.hero__title-line--alt) {
  /* "SEBI" zurückhaltender — der Star ist (Festi)VAL */
  font-size: .22em;
  letter-spacing: .04em;
  opacity: .72;
  margin-bottom: .08em;
}
.hero__title-line--alt {
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tag {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 500;
}

.hero__dates {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.date-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 22px 18px;
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s, background .3s;
}
.date-card:hover { transform: translateY(-4px); }
.date-card--accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -10px rgba(255,90,60,.6);
}
.date-card__day { font-size: 12px; letter-spacing: .2em; font-weight: 700; opacity: .8; }
.date-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  margin: 4px 0;
}
.date-card__mon { font-size: 13px; letter-spacing: .15em; text-transform: uppercase; opacity: .8; }

.hero__countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__countdown > div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px 18px;
  min-width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__countdown strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent-2);
  line-height: 1;
}
.hero__countdown span {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ----------------------------------------------------- INTRO */
.intro {
  padding: 120px 20px;
  background: var(--bg);
  position: relative;
}
.intro__kicker {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent-2);
  font-size: 20px;
  margin-bottom: 24px;
  transform: rotate(-1deg);
}
.intro__text {
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.01em;
  max-width: 980px;
}
.intro__text em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(255,210,63,.35) 60%);
}
.intro__text .hl {
  color: var(--accent);
}

.facts {
  list-style: none;
  margin-top: 56px;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.facts li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 28px;
  background: var(--bg);
  align-items: center;
}
.facts li span {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-3);
  font-weight: 700;
}
.facts li strong { font-size: clamp(15px, 1.6vw, 18px); font-weight: 500; }

@media (max-width: 600px) {
  .facts li { grid-template-columns: 1fr; gap: 4px; padding: 18px 20px; }
}

/* ----------------------------------------------------- SECTIONS */
.section {
  padding: 120px 20px;
}
.section--dark {
  background: var(--bg-soft);
}
.eyebrow {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--accent-2); }
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 56px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s, background .3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,210,63,.4);
}
.card__emoji {
  font-size: 44px;
  margin-bottom: 18px;
  display: inline-block;
  transform-origin: bottom left;
  transition: transform .3s;
}
.card:hover .card__emoji { transform: rotate(-8deg) scale(1.1); }
.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.card p { color: var(--ink-dim); font-size: 15px; }
.card--ghost {
  background: transparent;
  border: 2px dashed rgba(255,255,255,.18);
}

/* ----------------------------------------------------- LINEUP */
.lineup {
  background: var(--accent);
  color: #1a1226;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.lineup__marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #1a1226;
  border-bottom: 2px solid #1a1226;
  background: var(--accent-2);
  padding: 18px 0;
}
.lineup__track {
  display: inline-flex;
  gap: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: .02em;
  animation: scroll 28s linear infinite;
}
.lineup__track span { display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lineup__body {
  text-align: center;
  padding-top: 80px;
}
.lineup__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .9;
  margin: 12px 0 24px;
}
.lineup__sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: .85;
}
.lineup__title--small {
  font-size: clamp(56px, 9vw, 120px);
  margin-bottom: 12px;
}

/* Toggle teaser vs. full schedule via body[data-lineup] */
.lineup__teaser,
.lineup__schedule { display: none; }
body[data-lineup="teaser"]  .lineup__teaser   { display: block; }
body[data-lineup="preview"] .lineup__schedule { display: block; }
/* Fallback when no attribute is set → teaser */
body:not([data-lineup]) .lineup__teaser { display: block; }

/* Acts can be hidden one-by-one with class="hidden" on the <li> */
.day__list li.hidden { display: none; }

/* SCHEDULE — tabs + timeline */
.schedule__tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: rgba(26,18,38,.18);
  border: 1px solid rgba(26,18,38,.25);
  border-radius: 999px;
  margin: 8px 0 40px;
}
.schedule__tab {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: #1a1226;
  padding: 10px 22px;
  border-radius: 999px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: background .25s, color .25s, transform .15s;
}
.schedule__tab:hover { background: rgba(26,18,38,.1); }
.schedule__tab.is-active {
  background: #1a1226;
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
}
.schedule__tab-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1;
}
.schedule__tab-date {
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .7;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.timeline__day { display: none; list-style: none; padding: 0; }
.timeline__day.is-active {
  display: block;
  animation: fadeUp .4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Vertical connector line */
.timeline__day::before {
  content: '';
  position: absolute;
  left: 116px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(26,18,38,.4) 0 6px,
    transparent 6px 12px
  );
}

.event {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 10px 0;
  align-items: start;
}
.event__time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 1.05;
  color: #1a1226;
  text-align: right;
  padding-top: 18px;
  padding-right: 6px;
  word-spacing: -1px;
}
/* Marker dot on the connector line */
.event::before {
  content: '';
  position: absolute;
  left: 108px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a1226;
  border: 3px solid var(--accent-2);
  box-shadow:
    0 0 0 3px rgba(26,18,38,.85),
    0 6px 14px rgba(0,0,0,.35);
  z-index: 1;
}

.event__card {
  background: #1a1226;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.55);
}
.event__card::before {
  /* speech-bubble tail removed */
  content: none;
}
.event__card:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.6);
}
.event__card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.event__card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.event__tag {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* Highlight events: bold gradient card */
.event--hl::before {
  background: var(--accent-2);
  border-color: #1a1226;
  box-shadow:
    0 0 0 3px var(--accent-2),
    0 0 0 6px rgba(26,18,38,.85),
    0 8px 18px rgba(0,0,0,.4);
}
.event--hl .event__card {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a3c 60%, var(--accent-2) 100%);
  color: #1a1226;
}
.event--hl .event__card::before { background: var(--accent); }
.event--hl .event__card p { color: rgba(26,18,38,.78); }
.event--hl .event__tag { background: #1a1226; color: var(--accent-2); }

/* Soft / chill events: lighter card */
.event--soft .event__card {
  background: rgba(26,18,38,.08);
  color: #1a1226;
  border: 1px dashed rgba(26,18,38,.35);
  box-shadow: none;
}
.event--soft .event__card::before { background: rgba(26,18,38,.08); }
.event--soft .event__card p { color: rgba(26,18,38,.65); }
.event--soft::before {
  background: transparent;
  border-color: rgba(26,18,38,.55);
  box-shadow: 0 0 0 3px rgba(26,18,38,.15);
}

/* Hide individual acts via .hidden */
.event.hidden { display: none; }

/* ---------- REDACTED · Act-Titel verschleiern ----------
   Verwendung: <h4 class="redacted">Geheimer Act</h4>
   Optional am <p>:  <p class="redacted-p">Reveal bald…</p>
   Klick deckt den Titel temporär auf (rein per CSS via :active/:focus). */
.redacted {
  position: relative;
  display: inline-block;
  color: transparent !important;
  user-select: none;
  cursor: help;
  border-radius: 4px;
  isolation: isolate;
}
.redacted::before {
  /* Schwarzer Zensur-Balken mit leichtem Grain */
  content: '';
  position: absolute;
  inset: -2px -6px;
  background:
    repeating-linear-gradient(
      45deg,
      #0e0b14 0 6px,
      #1a1226 6px 12px
    );
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  transform: rotate(-.6deg);
  z-index: -1;
  transition: opacity .25s ease;
}
.redacted::after {
  /* „CLASSIFIED"-Stempel rechts oben */
  content: 'TOP SECRET';
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: 'Permanent Marker', cursive;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--accent-2);
  background: #1a1226;
  padding: 2px 8px;
  border-radius: 999px;
  transform: rotate(6deg);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
/* Hover / Tap: Titel kurz durchschimmern lassen */
.redacted:hover,
.redacted:focus,
.redacted:active {
  color: rgba(246,241,231,.85) !important;
}
.redacted:hover::before,
.redacted:focus::before,
.redacted:active::before { opacity: .15; }

/* Variante für Absätze unter dem Titel */
.redacted-p {
  color: var(--ink-dim);
  font-style: italic;
  letter-spacing: .02em;
}
.redacted-p::before {
  content: '🔒 ';
  margin-right: 4px;
}

/* Innerhalb von Highlight-Cards: heller Balken auf dunklerem Untergrund */
.event--hl .redacted::before {
  background: repeating-linear-gradient(
    45deg,
    rgba(26,18,38,.92) 0 6px,
    rgba(26,18,38,.78) 6px 12px
  );
}
.event--hl .redacted::after {
  background: var(--accent-2);
  color: #1a1226;
}
.event--hl .redacted:hover,
.event--hl .redacted:focus { color: #1a1226 !important; }

/* ---------- REDACTED · KOMPLETTE Event-Card verschleiern ----------
   Verwendung: <li class="event event--redacted"> ... </li>
   Die gesamte Box wird zensiert + bekommt einen TOP-SECRET-Stempel. */
.event--redacted .event__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Inhalt nahezu unleserlich machen */
  color: transparent !important;
  text-shadow: 0 0 14px rgba(246,241,231,.55);
  transition: text-shadow .25s ease, transform .25s ease;
}
.event--redacted .event__card * {
  color: transparent !important;
  user-select: none;
}
/* Zensur-Overlay über der gesamten Card */
.event--redacted .event__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(14,11,20,.92) 0 12px,
      rgba(26,18,38,.92) 12px 24px
    );
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s ease;
}
/* Großer „TOP SECRET"-Stempel quer über die Box */
.event--redacted .event__card::before {
  content: 'COMING SOON';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: .14em;
  color: var(--accent-2);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  transform: rotate(-4deg);
  z-index: 2;
  pointer-events: none;
  text-align: center;
  padding: 0 18px;
  /* override speech-bubble-tail reset */
  background: none;
  border-radius: 0;
}
/* Hover / Tap: kleiner Peek-Effekt, Stempel wackelt minimal */
.event--redacted .event__card:hover { transform: translateX(4px) rotate(.4deg); }
.event--redacted .event__card:hover::after { opacity: .85; }

/* Tag (z. B. „WM") wird mit-zensiert — kein Spoiler durchs Overlay */
.event--redacted .event__tag {
  visibility: hidden;
}


@media (max-width: 560px) {
  .timeline__day::before { left: 92px; }
  .event { grid-template-columns: 78px 1fr; gap: 26px; }
  .event::before { left: 84px; }
  .event__time { font-size: 16px; padding-top: 16px; }
  .event__card { padding: 14px 16px; }
  .event__card h4 { font-size: 20px; }
}

.lineup__disclaimer {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  text-align: center;
}

.btn {
  display: inline-block;
  background: #1a1226;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.btn--big { padding: 20px 42px; font-size: 16px; background: var(--accent); }
.btn--big:hover { background: #ff7558; }

/* WhatsApp-style CTA */
.cta .btn--big {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, .55);
}
.cta .btn--big:hover { background: #1ebe5b; }
.btn__icon { display: inline-flex; align-items: center; }

/* ----------------------------------------------------- INFOS */
.infos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.info {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border-left: 4px solid var(--accent-2);
  transition: transform .3s, border-color .3s;
}
.info:nth-child(2) { border-left-color: var(--accent-3); }
.info:nth-child(3) { border-left-color: var(--accent-4); }
.info:nth-child(4) { border-left-color: var(--accent); }
.info:nth-child(5) { border-left-color: #67c0ff; }
.info:nth-child(6) { border-left-color: #ff8ec7; }
.info:hover { transform: translateY(-4px); }
.info__icon { font-size: 32px; display: block; margin-bottom: 12px; }
.info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin-bottom: 8px; letter-spacing: .02em; }
.info p { color: var(--ink-dim); font-size: 15px; }
.info p strong { color: var(--ink); }

/* ----------------------------------------------------- CTA */
.cta {
  padding: 140px 20px;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(255,90,60,.25), transparent 70%),
    var(--bg);
  text-align: center;
}
.cta__inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.cta__inner p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-dim);
  margin-bottom: 36px;
}
.cta__hash {
  margin-top: 56px;
  font-family: 'Permanent Marker', cursive;
  color: var(--accent-2);
  font-size: 18px;
  letter-spacing: .04em;
  transform: rotate(-1deg);
  display: inline-block;
}

/* ----------------------------------------------------- FOOTER */
.footer {
  background: #06040a;
  padding: 40px 20px;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  height: 72px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
}
.footer p { font-size: 13px; color: var(--ink-dim); letter-spacing: .04em; }

/* ----------------------------------------------------- PASSWORD GATE */
body.locked { overflow: hidden; }
body.locked .nav,
body.locked .hero,
body.locked .intro,
body.locked .section,
body.locked .lineup,
body.locked .cta,
body.locked .footer { visibility: hidden; }

.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(255,210,63,.35), transparent 60%),
    radial-gradient(50% 50% at 80% 30%, rgba(192,132,255,.35), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(255,90,60,.55), transparent 65%),
    linear-gradient(180deg, #1a1226 0%, #0e0b14 100%);
  transition: opacity .5s ease;
  isolation: isolate;
}
.gate--hidden { opacity: 0; pointer-events: none; }

.gate__grain {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .3;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.gate__card {
  width: min(460px, 100%);
  background: rgba(22, 18, 29, .72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 44px 36px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.gate__card.shake { animation: shake .45s; }
@keyframes shake {
  10%, 90% { transform: translateX(-4px); }
  20%, 80% { transform: translateX(6px); }
  30%, 50%, 70% { transform: translateX(-10px); }
  40%, 60% { transform: translateX(10px); }
}

.gate__logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.gate__kicker {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent-2);
  font-size: 14px;
  margin-bottom: 8px;
  transform: rotate(-1deg);
}
.gate__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: .9;
  margin: 4px 0 14px;
  letter-spacing: .02em;
}
.gate__sub {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 24px;
}

.gate__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gate__form input {
  flex: 1 1 200px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.gate__form input:focus {
  border-color: var(--accent-2);
  background: rgba(255,255,255,.12);
}
.gate__form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.gate__form button:hover { background: #ff7558; transform: translateY(-2px); }

.gate__error {
  margin-top: 14px;
  color: #ffb4a8;
  font-size: 13px;
  opacity: 0;
  transition: opacity .2s;
}
.gate__error--show { opacity: 1; }

/* ----------------------------------------------------- MAP / GELÄNDEPLAN */
.map-section__lead {
  max-width: 720px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-dim);
  margin: -32px 0 40px;
}

.map-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  background: #000;
}
.map-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.map-figure:hover img { transform: scale(1.02); }

.map-legend {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 24px;
}
.map-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.map-legend li:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
}
.map-legend li strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .01em;
}
.map-legend__dot {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* ----------------------------------------------------- TICKETS CTA */
.cta-tickets {
  position: relative;
  padding: 110px 20px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #16121d 0%, #1f1429 100%);
}

.cta-tickets__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
          radial-gradient(55% 55% at 20% 30%, rgba(255,210,63,.28), transparent 60%),
          radial-gradient(60% 60% at 85% 70%, rgba(255,90,60,.35), transparent 65%),
          radial-gradient(50% 50% at 50% 100%, rgba(192,132,255,.25), transparent 65%);
  animation: ticketsHue 14s ease-in-out infinite alternate;
}
@keyframes ticketsHue {
  0%   { filter: hue-rotate(0deg) saturate(1); }
  100% { filter: hue-rotate(18deg) saturate(1.1); }
}

.cta-tickets__sticker {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  background: var(--accent-2);
  color: #1a1226;
  padding: 6px 18px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(255,210,63,.35);
}

.cta-tickets__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-tickets__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-dim);
  margin: 0 auto 36px;
  max-width: 640px;
}

/* Riesen-CTA-Button im Ticket-Look */
.btn-tickets {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px 22px 30px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a3c 55%, var(--accent-2) 100%);
  color: #1a1226;
  border-radius: 22px;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
          0 20px 50px -12px rgba(255,90,60,.55),
          0 4px 0 rgba(26,18,38,.18) inset;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  overflow: hidden;
}
.btn-tickets::before {
  /* Glanz-Streifen drüberlaufen */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 30%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: ticketsShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ticketsShine {
  0%   { left: -40%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

.btn-tickets:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
          0 28px 60px -10px rgba(255,90,60,.65),
          0 4px 0 rgba(26,18,38,.18) inset;
  filter: brightness(1.05);
}
.btn-tickets:active { transform: translateY(-1px) scale(1.0); }

.btn-tickets__icon {
  font-size: 38px;
  line-height: 1;
  transform: rotate(-12deg);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
.btn-tickets__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.btn-tickets__label-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: .04em;
}
.btn-tickets__label-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(26,18,38,.7);
  margin-top: 4px;
}
.btn-tickets__arrow {
  font-size: 28px;
  font-weight: 800;
  margin-left: 6px;
  transition: transform .2s ease;
}
.btn-tickets:hover .btn-tickets__arrow { transform: translateX(6px); }

.cta-tickets__hint {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 560px) {
  .btn-tickets { padding: 18px 22px; gap: 14px; }
  .btn-tickets__icon { font-size: 30px; }
  .btn-tickets__arrow { font-size: 22px; }
}

/* ============================================================
   CANCELLED BANNER & STAMP
   ============================================================ */

/* --- Top Bar ---------------------------------------------- */
.cancelled-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  color: #fff;
  background: linear-gradient(180deg, #d23a2a 0%, #a82a1f 100%);
  border-bottom: 1px solid rgba(0,0,0,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.cancelled-bar::before {
  /* Warning-stripe accent on top */
  content: '';
  display: block;
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    #ffd23f 0 14px,
    #1a1226 14px 28px
  );
}
.cancelled-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cancelled-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1226;
  color: #ffd23f;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 7px 14px 6px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.cancelled-bar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  flex: 1 1 360px;
  color: rgba(255,255,255,.95);
}
.cancelled-bar strong {
  font-weight: 800;
  color: #fff;
}

/* Push the rest of the page down so the bar doesn't overlap content.
   Bar ≈ stripe(6) + padding(28) + content(~22) ≈ 56px */
body.is-cancelled { padding-top: 56px; }
body.is-cancelled .nav { top: 56px; }

/* --- Diagonal Stamp inside the Hero ----------------------- */
.cancelled-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  z-index: 40;
  pointer-events: none;
  user-select: none;
  text-align: center;
  animation: stamp-float 6s ease-in-out infinite;
}
@keyframes stamp-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-14deg) scale(1); }
  50%      { transform: translate(-50%, calc(-50% - 6px)) rotate(-13deg) scale(1.015); }
}

.cancelled-stamp__text {
  display: block;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .9;
  color: #ff3b30;
  text-transform: uppercase;
  padding: 14px 48px 10px;
  border: 8px solid #ff3b30;
  border-radius: 18px;
  background: transparent;
  text-shadow:
    0 0 1px rgba(255,59,48,.6),
    0 6px 30px rgba(255,59,48,.25);
  box-shadow:
    inset 0 0 0 2px rgba(255,59,48,.25),
    0 18px 60px rgba(0,0,0,.45);
  filter: drop-shadow(0 4px 12px rgba(255,59,48,.25));
  opacity: .95;
}
.cancelled-stamp__sub {
  display: block;
  margin-top: 10px;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #ff3b30;
  opacity: .85;
}

/* Dim hero content so the stamp is the star */
body.is-cancelled .hero__title,
body.is-cancelled .hero__tag,
body.is-cancelled .hero__dates,
body.is-cancelled .hero__sticker { opacity: .35; }

@media (max-width: 700px) {
  body.is-cancelled { padding-top: 96px; }
  body.is-cancelled .nav { top: 96px; }
  .cancelled-bar__inner { padding: 12px 16px; gap: 12px; }
  .cancelled-bar p { font-size: 13.5px; }
  .cancelled-stamp__text { padding: 10px 28px 8px; border-width: 6px; border-radius: 14px; }
}

/* Gate sits above content but below the cancelled banner */
.gate { z-index: 9000; }

/* Hide ticket CTA, countdown & scroll-hint while cancelled */
body.is-cancelled .cta-tickets,
body.is-cancelled .hero__countdown,
body.is-cancelled .hero__scroll { display: none !important; }

