/* ============================================================
   SILVESTER 2026 — MASK NOIR EDITION
   Deep Red + Gold accent on black
   ============================================================ */

:root {
  --sv-red:        #0091AD;
  --sv-red-soft:   rgba(0, 145, 173, 0.15);
  --sv-red-border: rgba(0, 145, 173, 0.35);
  --sv-red-dim:    rgba(0, 145, 173, 0.65);
  --sv-gold:       #c9a84c;
  --sv-gold-soft:  rgba(201, 168, 76, 0.18);
  --ticker-bg:     #001218;

  /* Override site pink → red */
  --pink:          var(--sv-red);
  --pink-soft:     var(--sv-red-soft);
  --pink-border:   var(--sv-red-border);
}

/* ---- TICKER ---- */
.ticker { background: var(--ticker-bg); }
.ticker__item { color: var(--sv-red); }
.ticker__sep  { color: var(--sv-red); opacity: 0.5; }

/* ---- NAV ---- */
.sv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 48px);
  background: rgba(5,0,2,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sv-red-border);
}
.sv-nav__mark img { height: 32px; width: auto; display: block; }
.sv-nav__date {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
}
.sv-nav__trigger {
  background: none;
  border: 1px solid var(--sv-red-border);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 7px 14px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.sv-nav__trigger:hover { border-color: var(--sv-red); color: #fff; }

/* ---- OVERLAY MENU ---- */
.sv-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: #050002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 6vw, 80px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.sv-menu.is-open {
  transform: translateX(0);
  pointer-events: all;
}
.sv-menu__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 6px;
}
.sv-menu__close span {
  display: block; width: 24px; height: 1px;
  background: #fff; transition: transform 0.2s;
}
.sv-menu__close span:first-child { transform: rotate(45deg) translate(5px,5px); }
.sv-menu__close span:last-child  { transform: rotate(-45deg) translate(5px,-5px); }
.sv-menu__link {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 16px;
  transition: color 0.2s;
}
.sv-menu__link:hover { color: var(--sv-red); }
.sv-menu__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sv-red);
  letter-spacing: 0.1em;
}

/* ---- INTRO PARALLAX MARK ---- */
.sv-intro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #050002;
  position: relative;
  overflow: hidden;
}
.sv-intro__bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.25;
  filter: saturate(0.4);
}
.sv-intro__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,0,2,0.4) 0%, rgba(5,0,2,0.7) 100%);
}
.sv-intro__mark {
  position: relative;
  height: clamp(60px, 10vw, 100px);
  width: auto;
  opacity: 0.9;
  z-index: 2;
  margin-bottom: 24px;
}
.sv-intro__line {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-align: center;
}
.sv-intro__date {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  margin-top: 16px;
}

/* ---- HERO ---- */
.sv-hero {
  min-height: 100vh;
  background: #050002;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.sv-hero__bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: 0.35;
}
.sv-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5,0,2,0.95) 40%, rgba(5,0,2,0.3) 100%),
    linear-gradient(to top, rgba(5,0,2,0.8) 0%, transparent 50%);
}
.sv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sv-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.sv-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  line-height: 0.88;
  color: #fff;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.sv-hero__sub {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.6);
  max-width: 48ch;
  line-height: 1.5;
  margin-bottom: 32px;
}
.sv-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn--sv-filled {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sv-red);
  border: 2px solid var(--sv-red);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn--sv-filled:hover { background: transparent; color: var(--sv-red); }
.btn--sv-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn--sv-ghost:hover { border-color: var(--sv-red); color: var(--sv-red); }

/* ---- KONZEPT / PROGRAMM ---- */
.sv-konzept {
  background: #080004;
  padding: clamp(80px, 12vw, 140px) 0;
}
.sv-konzept__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.sv-konzept__left {}
.sv-konzept__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.sv-konzept__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.92;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.sv-konzept__body {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 44ch;
}
.sv-konzept__right {}
.sv-program {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sv-program__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sv-program__item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.sv-program__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--sv-red-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sv-red);
  font-size: 14px;
  margin-top: 2px;
}
.sv-program__text {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.sv-program__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .sv-konzept__inner { grid-template-columns: 1fr; }
}

/* ---- MOMENT / FULLBLEED IMAGE ---- */
.sv-moment {
  position: relative;
  height: clamp(300px, 45vw, 600px);
  overflow: hidden;
}
.sv-moment__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sv-moment__overlay {
  position: absolute; inset: 0;
  background: rgba(5,0,2,0.5);
}
.sv-moment__line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 80px);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding-inline: 20px;
}

/* ---- ACTS / DJS ---- */
.sv-acts {
  background: #050002;
  padding: clamp(80px, 12vw, 140px) 0;
}
.sv-acts__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sv-acts__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.sv-acts__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: #fff;
  text-align: center;
  margin: 0 0 60px;
  text-transform: uppercase;
}
.sv-acts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.sv-act {
  display: flex;
  flex-direction: column;
}
.sv-act__photos {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
}
.sv-act__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}
.sv-act__photo--main { opacity: 1; }
.sv-act__photo--sub  { opacity: 0; }
.sv-act:hover .sv-act__photo--main { opacity: 0; }
.sv-act:hover .sv-act__photo--sub  { opacity: 1; }
.sv-act__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.sv-act__bio {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 12px;
}
.sv-act__ig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sv-red);
  text-decoration: none;
  text-transform: lowercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.sv-act__ig::before { content: '↗'; }
.sv-act__ig:hover { text-decoration: underline; }

.sv-acts__tba {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--sv-red-border);
}
.sv-acts__tba p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin: 0;
}
.sv-acts__tba strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .sv-acts__grid { grid-template-columns: 1fr; }
}

/* ---- WALLET ---- */
.sv-wallet {
  background: #080004;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}
.sv-wallet__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sv-wallet__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.sv-wallet__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.sv-wallet__free {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.sv-wallet__visual {
  width: 180px; height: 180px;
  border: 2px solid var(--sv-red-border);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.sv-wallet__amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.sv-wallet__amount-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.sv-wallet__labels {
  list-style: none;
  margin: 0 0 32px; padding: 0;
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.sv-wallet__labels li {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
}
.sv-wallet__explainer {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
}

/* ---- ANFAHRT ---- */
.sv-route {
  background: #050002;
  padding: clamp(80px, 12vw, 140px) 0;
}
.sv-route__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sv-route__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.sv-route__line {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.sv-route__from, .sv-route__to {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.sv-route__track {
  flex: 1;
  height: 1px;
  background: var(--sv-red-border);
  position: relative;
}
.sv-route__dot {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sv-red);
}
.sv-route__address {
  font-family: var(--font-body, 'Barlow Condensed', sans-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 24px;
}
.sv-route__facts {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.sv-route__facts li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.sv-route__facts li::before {
  content: '— ';
  color: var(--sv-red);
}

/* ---- FINAL CTA ---- */
.sv-final {
  background: #030001;
  padding: clamp(100px, 15vw, 180px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sv-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196,18,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sv-final__inner {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sv-final__mark {
  height: 48px; width: auto;
  opacity: 0.6;
  margin-bottom: 24px;
}
.sv-final__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.sv-final__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--sv-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}
.sv-final__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sv-final__wa {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sv-red);
  border: 2px solid var(--sv-red);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sv-final__wa:hover { background: transparent; color: var(--sv-red); }
.sv-final__wa svg { flex-shrink: 0; }

/* ---- FLOAT WA ---- */
.sv-float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sv-red);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196,18,48,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(196,18,48,0.7);
}
.sv-float-wa svg { width: 24px; height: 24px; fill: #fff; }

/* ---- LINEUP TBA ---- */
.sv-lineup-tba {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 32px;
}
.sv-lineup-tba__slot {
  display: grid; grid-template-columns: 40px 1fr auto;
  align-items: center; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sv-lineup-tba__slot:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.sv-lineup-tba__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(139,0,255,0.6); }
.sv-lineup-tba__name { font-family: var(--font-display); font-size: clamp(20px, 3vw, 32px); color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.sv-lineup-tba__info { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.2); text-transform: uppercase; }
.sv-acts__tba-follow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); text-transform: uppercase; text-align: center; line-height: 2; margin-top: 0; }
@media (max-width: 600px) { .sv-lineup-tba__slot { grid-template-columns: 32px 1fr; } .sv-lineup-tba__info { display: none; } }
