/* ============================================
   SCHRIPPENSÖHNE — TOUR 2026
   Design System & Styles — V2 (Premium Edition)
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #06060e;
  --color-bg-elevated: #0e0e1e;
  --color-bg-card: rgba(14, 14, 35, 0.55);
  --color-primary: #ff2d95;
  --color-secondary: #00d4ff;
  --color-accent: #ffd700;
  --color-accent-warm: #ff6b35;
  --color-text: #f0f0f5;
  --color-text-muted: #6a6a90;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-glow: rgba(255, 45, 149, 0.25);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg in oklch, var(--color-primary), var(--color-secondary));
  --gradient-warm: linear-gradient(135deg in oklch, var(--color-primary), var(--color-accent-warm));
  --gradient-hero: radial-gradient(ellipse 120% 80% at 50% 40%, #1a0a2e 0%, #080810 50%, #040410 100%);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s var(--ease-out-expo);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-bg);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Noise Texture Overlay (film grain effect) --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation --- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: rgba(6, 6, 14, 0.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: default;
}

.nav-links {
  display: flex;
  gap: var(--space-sm);
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Animated stage light glow — pink */
#hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 45, 149, 0.12), transparent 70%);
  animation: glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Animated stage light glow — cyan */
#hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1), transparent 70%);
  animation: glow-drift 15s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes glow-drift {
  0% { translate: 0 0; scale: 1; }
  50% { translate: 5% 3%; scale: 1.1; }
  100% { translate: -3% -2%; scale: 0.95; }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.7) contrast(1.1);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black 30%, transparent 75%);
}

/* Scanlines overlay */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: var(--color-text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  animation: fade-in-up 0.9s var(--ease-out-expo) 0.2s both;
}

/* --- Glitch Text Effect --- */
.glitch {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
  position: relative;
  color: var(--color-text);
  text-shadow: 0 0 40px rgba(255, 45, 149, 0.2), 0 0 80px rgba(0, 212, 255, 0.1);
  animation: fade-in-up 0.9s var(--ease-out-expo) 0.4s both;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch::before {
  color: var(--color-secondary);
  animation: glitch-1 4s infinite linear alternate-reverse;
  clip-path: inset(0 0 85% 0);
}

.glitch::after {
  color: var(--color-primary);
  animation: glitch-2 3.5s infinite linear alternate-reverse;
  clip-path: inset(85% 0 0 0);
}

@keyframes glitch-1 {
  0%, 88% { clip-path: inset(0 0 85% 0); translate: 0; }
  89% { clip-path: inset(15% 0 45% 0); translate: -5px 0; }
  90% { clip-path: inset(55% 0 10% 0); translate: 5px 0; }
  91% { clip-path: inset(8% 0 65% 0); translate: -3px 0; }
  92% { clip-path: inset(35% 0 25% 0); translate: 7px 0; }
  93%, 100% { clip-path: inset(0 0 85% 0); translate: 0; }
}

@keyframes glitch-2 {
  0%, 86% { clip-path: inset(85% 0 0 0); translate: 0; }
  87% { clip-path: inset(45% 0 25% 0); translate: 4px 0; }
  88% { clip-path: inset(10% 0 55% 0); translate: -6px 0; }
  89% { clip-path: inset(65% 0 8% 0); translate: 3px 0; }
  90% { clip-path: inset(25% 0 35% 0); translate: -4px 0; }
  91%, 100% { clip-path: inset(85% 0 0 0); translate: 0; }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.5em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  animation: fade-in-up 0.9s var(--ease-out-expo) 0.6s both;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  animation: fade-in-up 0.9s var(--ease-out-expo) 0.8s both;
}

/* --- Primary Button --- */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: fade-in-up 0.9s var(--ease-out-expo) 1s both;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255, 45, 149, 0.25);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  translate: -100% 0;
  transition: translate 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(255, 45, 149, 0.35), 0 0 60px rgba(255, 45, 149, 0.15);
  color: white;
}

.btn-primary:hover::before {
  translate: 100% 0;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  animation: bounce-down 2.5s infinite, fade-in-up 0.9s var(--ease-out-expo) 1.5s both;
}

.hero-scroll-indicator span {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

@keyframes bounce-down {
  0%, 100% { translate: -50% 0; }
  50% { translate: -50% 12px; }
}

/* --- Floating Schrippen Particles --- */
#schrippen-container {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.schrippe {
  position: absolute;
  bottom: -60px;
  font-size: 2rem;
  animation: float-up linear forwards;
  opacity: 0.6;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.25));
  will-change: transform, opacity;
}

@keyframes float-up {
  0% {
    translate: 0 0;
    rotate: 0deg;
    opacity: 0;
  }
  8% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.6;
  }
  100% {
    translate: var(--drift-x, 30px) calc(-100vh - 80px);
    rotate: var(--spin, 360deg);
    opacity: 0;
  }
}

/* ========================================
   MARQUEE TICKER
   ======================================== */
.marquee-wrapper {
  overflow: hidden;
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 45, 149, 0.03);
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-muted);
}

.marquee-track span .marquee-dot {
  color: var(--color-primary);
  margin: 0 0.3em;
}

@keyframes marquee-scroll {
  0% { translate: 0 0; }
  100% { translate: -50% 0; }
}

/* ========================================
   SECTION BASE
   ======================================== */
section {
  padding: var(--space-2xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  translate: 0 40px;
  animation: reveal-in linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 25%;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    translate: 0 40px;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}

@supports not (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    translate: 0 0;
    filter: none;
  }
}

/* ========================================
   TOUR SECTION
   ======================================== */
#tour {
  position: relative;
}

#tour::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255, 45, 149, 0.06), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* --- Glassmorphism Tour Cards with animated border --- */
.tour-card {
  position: relative;
  background: var(--color-bg-card);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

/* Animated gradient border */
.tour-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 40%, var(--color-primary) 50%, var(--color-secondary) 55%, transparent 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: rotate-border 6s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tour-card:hover::before {
  opacity: 1;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-border {
  to { --border-angle: 360deg; }
}

/* Inner glow on hover */
.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 45, 149, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 80px rgba(255, 45, 149, 0.08),
    0 0 0 1px rgba(255, 45, 149, 0.1);
}

.tour-card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  animation: pulse-badge 2.5s infinite;
  z-index: 2;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 0 10px rgba(255, 45, 149, 0); }
}

.tour-card-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.tour-card-date {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.tour-card-detail {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown-container {
  text-align: center;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-md);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  min-width: 85px;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer on countdown units */
.countdown-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.countdown-label-small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text-muted);
  animation: blink 1s step-end infinite;
  opacity: 0.5;
}

@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0; }
}

/* ========================================
   SETLIST SECTION
   ======================================== */
#setlist {
  position: relative;
}

#setlist::before {
  content: "";
  position: absolute;
  top: 15%;
  right: -25%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.05), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.setlist-list {
  list-style: none;
  counter-reset: setlist;
  max-width: 680px;
  margin: 0 auto;
}

.setlist-item {
  counter-increment: setlist;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.85rem var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  cursor: default;
}

.setlist-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  translate: 0 -50%;
  transition: height var(--transition-base);
}

.setlist-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 45, 149, 0.06), transparent 80%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.setlist-item:hover::before {
  height: 60%;
}

.setlist-item:hover::after {
  opacity: 1;
}

.setlist-item:hover {
  transform: translateX(12px);
}

.setlist-item + .setlist-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.setlist-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  min-width: 2.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.setlist-item:hover .setlist-number {
  opacity: 1;
}

.setlist-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.setlist-song {
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition-base);
}

.setlist-item:hover .setlist-song {
  color: white;
}

.setlist-artist {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ========================================
   BAND SECTION
   ======================================== */
#band {
  position: relative;
}

#band::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  translate: -50% 0;
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(255, 45, 149, 0.04), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-md);
}

.band-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

/* Gradient halo behind icon */
.band-card .band-card-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.band-card .band-card-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.15), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.band-card:hover .band-card-icon-wrap::before {
  opacity: 1;
}

.band-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 212, 255, 0.08);
}

.band-card-icon {
  font-size: 3.5rem;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.band-card:hover .band-card-icon {
  transform: scale(1.2) rotate(-8deg);
}

.band-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.band-card-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.band-card-title {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-band-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.footer-info p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 0.7rem;
  opacity: 0.4;
}

/* ========================================
   CONFETTI (Easter egg)
   ======================================== */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  z-index: 200;
  pointer-events: none;
  border-radius: 2px;
  animation: confetti-fall 1.5s var(--ease-out-expo) forwards;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    rotate: 0deg;
  }
  100% {
    opacity: 0;
    translate: var(--confetti-x, 50px) var(--confetti-y, 300px);
    scale: 0.2;
    rotate: var(--confetti-rot, 720deg);
  }
}

/* ========================================
   ENTRANCE ANIMATION
   ======================================== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    translate: 0 30px;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .glitch::before,
  .glitch::after {
    animation: none;
  }

  .schrippe {
    animation-duration: 30s;
  }

  .tour-card-badge {
    animation: none;
  }

  .tour-card::before {
    animation: none;
  }

  .countdown-separator {
    animation: none;
    opacity: 0.5;
  }

  .countdown-unit::before {
    animation: none;
  }

  .marquee-track {
    animation-duration: 120s;
  }

  .hero-scroll-indicator {
    animation: fade-in-up 0.8s var(--ease-out-expo) 1.5s both;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
    filter: none;
    animation: none;
  }

  #hero::before,
  #hero::after {
    animation: none;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-2xl: 5rem;
    --space-xl: 3rem;
    --space-lg: 2rem;
  }

  #main-nav {
    padding: var(--space-xs) var(--space-sm);
  }

  .nav-links {
    gap: var(--space-xs);
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .tour-grid {
    gap: var(--space-md);
  }

  .countdown {
    gap: 6px;
  }

  .countdown-unit {
    min-width: 65px;
    padding: var(--space-xs) var(--space-sm);
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .setlist-item {
    padding: 0.7rem var(--space-sm);
    gap: var(--space-sm);
  }

  .band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .marquee-track span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .band-grid {
    grid-template-columns: 1fr;
  }

  .setlist-item:hover {
    transform: none;
  }

  .setlist-item:hover::before {
    height: 0;
  }

  .nav-logo {
    font-size: 1rem;
  }
}
