:root {
  --bg: #09070f;
  --bg-soft: #120d1c;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --pink: #ff3fa8;
  --cyan: #39d6ff;
  --yellow: #ffcf4a;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(255, 63, 168, 0.24), transparent 36%),
              radial-gradient(circle at top right, rgba(57, 214, 255, 0.22), transparent 32%),
              radial-gradient(circle at bottom left, rgba(255, 207, 74, 0.16), transparent 35%),
              var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -22%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 25%, rgba(255,63,168,0.24), transparent 30%),
    radial-gradient(ellipse at 82% 18%, rgba(57,214,255,0.22), transparent 28%),
    radial-gradient(ellipse at 52% 86%, rgba(255,207,74,0.16), transparent 30%);
  filter: blur(34px);
  animation: background-waves 15s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(255,255,255,0.00) 24%, rgba(255,255,255,0.24) 36%, rgba(57,214,255,0.16) 43%, rgba(255,63,168,0.18) 51%, rgba(255,207,74,0.13) 58%, transparent 72% 100%),
    radial-gradient(ellipse at 25% 42%, rgba(255,255,255,0.22), transparent 31%),
    radial-gradient(ellipse at 80% 56%, rgba(57,214,255,0.18), transparent 30%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.96;
  transform: translate3d(-30%, 0, 0) skewX(-14deg) scale(1.08);
  animation: visible-liquid-wave 7.5s ease-in-out infinite;
}

@keyframes visible-liquid-wave {
  0% { transform: translate3d(-38%, -2%, 0) skewX(-16deg) scale(1.05); opacity: 0.40; }
  38% { transform: translate3d(-8%, 1.5%, 0) skewX(8deg) scale(1.16); opacity: 1; }
  70% { transform: translate3d(18%, -1%, 0) skewX(14deg) scale(1.10); opacity: 0.86; }
  100% { transform: translate3d(42%, 2%, 0) skewX(-10deg) scale(1.05); opacity: 0.35; }
}

@keyframes background-waves {
  0% { transform: translate3d(-2%, -1%, 0) scale(1) rotate(0deg); opacity: 0.62; }
  50% { transform: translate3d(2%, 1.5%, 0) scale(1.07) rotate(4deg); opacity: 0.86; }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.03) rotate(-3deg); opacity: 0.7; }
}

a { color: inherit; }


/* dezenter Schimmer wie Club-/Festival-Glanz, aber nicht billig blinkend */
.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,0.18) 46%, transparent 54%, transparent 100%),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.18), transparent 14%),
    radial-gradient(circle at 82% 26%, rgba(255,207,74,0.16), transparent 13%),
    radial-gradient(circle at 54% 78%, rgba(57,214,255,0.14), transparent 16%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translateX(-18%) rotate(4deg);
  animation: shimmer-sweep 8s ease-in-out infinite alternate;
}

.hero-content,
.site-header { z-index: 2; }

.hero-logo {
  animation: logo-glow 5.5s ease-in-out infinite alternate;
}

@keyframes shimmer-sweep {
  from { transform: translateX(-18%) rotate(4deg); opacity: 0.48; }
  to { transform: translateX(18%) rotate(4deg); opacity: 0.82; }
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 24px 70px rgba(0,0,0,0.62)) drop-shadow(0 0 12px rgba(255,255,255,0.08)); }
  to { filter: drop-shadow(0 24px 70px rgba(0,0,0,0.62)) drop-shadow(0 0 32px rgba(255,207,74,0.26)); }
}


.site-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}

.nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--text);
  font-size: 19px;
  font-weight: 950;
  pointer-events: auto;
}

.nav a {
  position: relative;
  min-height: auto;
  padding: 7px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.78);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #39d6ff 0%, #ffcf4a 42%, #ff3fa8 100%);
  opacity: 0.9;
  transform: scaleX(0.68);
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.nav a:hover {
  color: #ffcf4a;
}


.ticket-button,
.secondary-button,
.artist-card a,
.text-link {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #09070f;
  background: linear-gradient(135deg, #39d6ff 0%, #ffcf4a 42%, #ff3fa8 100%);
  box-shadow: 0 18px 54px rgba(255,63,168,0.34);
}

.header-ticket {
  grid-column: 3;
  justify-self: end;
  pointer-events: auto;
}

.ticket-button:hover,
.secondary-button:hover,
.artist-card a:hover { transform: translateY(-2px); }

.section {
  position: relative;
  padding: 120px 22px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding-top: 98px;
  padding-bottom: 24px;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(9,7,15,0.1), rgba(9,7,15,0.86)), url("assets/logo-bg.jpg");
  background-image: linear-gradient(to bottom, rgba(9,7,15,0.1), rgba(9,7,15,0.86)), image-set(
    url("assets/logo-bg.avif") type("image/avif"),
    url("assets/logo-bg.webp") type("image/webp"),
    url("assets/logo-bg.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.3);
  transform: scale(1.08);
  opacity: 0.7;
  animation: hero-bg-breathe 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(ellipse at 28% 30%, rgba(255,255,255,0.26), transparent 20%),
    radial-gradient(ellipse at 70% 62%, rgba(57,214,255,0.26), transparent 22%),
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,0.00) 25%, rgba(255,255,255,0.30) 38%, rgba(255,63,168,0.24) 48%, rgba(57,214,255,0.22) 58%, transparent 76% 100%);
  mix-blend-mode: screen;
  filter: blur(5px);
  animation: liquid-shimmer 5.5s ease-in-out infinite;
}

@keyframes hero-bg-breathe {
  from { transform: scale(1.08) translate3d(-1%, -1%, 0); filter: blur(18px) saturate(1.24); }
  to { transform: scale(1.14) translate3d(1.5%, 1%, 0); filter: blur(22px) saturate(1.45); }
}

@keyframes liquid-shimmer {
  from { transform: translateX(-32%) skewX(-12deg) scaleX(1.04); opacity: 0.55; }
  50% { transform: translateX(2%) skewX(8deg) scaleX(1.22); opacity: 1; }
  to { transform: translateX(34%) skewX(12deg) scaleX(1.08); opacity: 0.62; }
}

.hero-content {
  position: relative;
  width: min(920px, 100%);
  text-align: center;
  padding: 0 22px 18px;
}

.hero-logo {
  width: min(385px, 68vw);
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 28px 80px rgba(0,0,0,0.62));
}

.date-line {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.045em;
  color: var(--text);
  text-shadow: 0 10px 34px rgba(0,0,0,0.6);
}

.location-link {
  display: inline-flex;
  margin: 0 0 15px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 2px solid rgba(255,207,74,0.7);
  text-shadow: 0 10px 34px rgba(0,0,0,0.55);
}

.location-link:hover { opacity: 0.82; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
}

.artist-jump {
  min-height: 54px;
  padding: 0 34px;
  font-size: 17px;
  color: #09070f;
  border: 0;
  background: linear-gradient(135deg, #39d6ff 0%, #ffcf4a 42%, #ff3fa8 100%);
  box-shadow: 0 18px 54px rgba(255,63,168,0.34);
}


.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 22px;
  padding: 18px 24px;
  border-radius: 26px;
  color: #09070f;
  background: linear-gradient(135deg, #39d6ff 0%, #ffcf4a 42%, #ff3fa8 100%);
  box-shadow: 0 20px 60px rgba(255,63,168,0.28);
}
.price-highlight strong {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.price-highlight span {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.04em;
}
.included-grid small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.86;
  line-height: 1.15;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.copy p { margin-bottom: 18px; }
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.included-grid span {
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  background: radial-gradient(circle at 20% 10%, rgba(255,207,74,0.34), transparent 36%),
              radial-gradient(circle at 90% 100%, rgba(57,214,255,0.24), transparent 36%),
              rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.92);
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(0,0,0,0.18);
}

.included-grid span:nth-child(1) { background: linear-gradient(135deg, #39d6ff 0%, rgba(57,214,255,0.34) 100%); }
.included-grid span:nth-child(2) { background: linear-gradient(135deg, #ffcf4a 0%, rgba(255,207,74,0.32) 100%); }
.included-grid span:nth-child(3) { background: linear-gradient(135deg, #ff3fa8 0%, rgba(255,63,168,0.32) 100%); }
.included-grid span:nth-child(4) { background: linear-gradient(135deg, #6a5cff 0%, rgba(106,92,255,0.35) 100%); }
.included-grid span:nth-child(5) { background: linear-gradient(135deg, #22ffaa 0%, rgba(34,255,170,0.30) 100%); }
.included-grid span:nth-child(6) { background: linear-gradient(135deg, #ff8040 0%, rgba(255,128,64,0.32) 100%); }
.included-grid span:nth-child(7) { background: linear-gradient(135deg, #b752ff 0%, rgba(183,82,255,0.32) 100%); }
.included-grid span:nth-child(8) { background: linear-gradient(135deg, #ffe578 0%, rgba(255,229,120,0.30) 100%); }
.included-grid span:nth-child(9) { background: linear-gradient(135deg, #ff5478 0%, rgba(255,84,120,0.33) 100%); }
.included-grid span:nth-child(10) { background: linear-gradient(135deg, #39d6ff 0%, #ff3fa8 100%); }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.section-note {
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
  aspect-ratio: 4 / 5;
}

.artist-card picture,
.artist-card img,
.placeholder-image {
  width: 100%;
  height: 100%;
  display: block;
}

.artist-card picture {
  position: absolute;
  inset: 0;
}

.artist-card img {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.artist-card:hover img { transform: scale(1.045); filter: saturate(1.16) contrast(1.04); }

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.38) 26%, rgba(0,0,0,0.03) 62%);
  pointer-events: none;
}

.artist-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 15px;
}

.artist-card-body h3 {
  margin-bottom: 7px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1;
  color: var(--text);
  text-shadow: 0 8px 28px rgba(0,0,0,0.65);
}

.artist-card-body p {
  color: rgba(255,255,255,0.82);
  line-height: 1.25;
  margin: -2px 0 8px;
  font-size: 11px;
  font-weight: 700;
}

.artist-card a,
.disabled-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}

.disabled-link { color: rgba(255,255,255,0.76); opacity: 0.9; }

.placeholder-image {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.62);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: radial-gradient(circle at 30% 20%, rgba(255,63,168,0.35), transparent 36%),
              radial-gradient(circle at 70% 70%, rgba(57,214,255,0.28), transparent 34%),
              rgba(255,255,255,0.06);
}

.ticket-panel {
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 52px;
  background: radial-gradient(circle at top right, rgba(255,63,168,0.22), transparent 40%),
              radial-gradient(circle at bottom left, rgba(57,214,255,0.16), transparent 38%),
              rgba(255,255,255,0.07);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.price-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.price-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 44px;
  letter-spacing: -0.06em;
}

.price-card p,
.ticket-note {
  color: var(--muted);
  line-height: 1.55;
}

.big-ticket { min-height: 54px; padding: 0 30px; }
.ticket-note { max-width: 680px; margin: 24px 0 0; }

.footer {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 32px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer a { text-decoration: none; color: var(--text); font-weight: 800; }

@media (max-width: 900px) {
 .site-header { top: 10px; width: calc(100% - 18px); }
  .nav { gap: 18px; font-size: 15px; }
  .header-ticket { padding: 0 16px; font-size: 14px; }
  
.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 22px;
  padding: 18px 24px;
  border-radius: 26px;
  color: #09070f;
  background: linear-gradient(135deg, #39d6ff 0%, #ffcf4a 42%, #ff3fa8 100%);
  box-shadow: 0 20px 60px rgba(255,63,168,0.28);
}
.price-highlight strong {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.price-highlight span {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.04em;
}
.included-grid small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.86;
  line-height: 1.15;
}

.two-column { grid-template-columns: 1fr; gap: 24px; }
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .section { padding: 84px 16px; }
  .hero { padding-top: 88px; padding-bottom: 18px; }
 .site-header { padding-left: 14px; gap: 10px; }
  .nav { gap: 12px; font-size: 13px; }
  .nav a { padding: 6px 4px; }
  .header-ticket { min-height: 40px; padding: 0 13px; }
  .hero-logo { width: min(270px, 70vw); }
  .artist-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .ticket-panel { padding: 28px; border-radius: 30px; }
}
