:root {
  --bg: #08090b;
  --bg-2: #121519;
  --panel: rgba(17, 20, 26, 0.82);
  --panel-strong: rgba(22, 24, 30, 0.95);
  --card: rgba(12, 15, 20, 0.9);
  --text: #edf2f8;
  --muted: #a5afbb;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #ef3d3d;
  --primary-2: #ff8a43;
  --primary-3: #ffefef;
  --shadow: rgba(239, 61, 61, 0.35);
  --glow: rgba(255, 104, 76, 0.25);
  --success: #7ae7b7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(239, 61, 61, 0.18), transparent 30%),
    linear-gradient(180deg, #07080a 0%, #0e1117 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
span,
strong {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 86px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow strong {
  color: var(--primary-3);
  font-size: 1.8rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 700px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 11, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(2px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 170px;
  filter: drop-shadow(0 0 18px rgba(239, 61, 61, 0.15));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 138, 67, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 18px;
}

.toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.nav-panel.open {
  max-height: 220px;
  opacity: 1;
  padding-bottom: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 0.24s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-cta,
.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 20px 50px rgba(239, 61, 61, 0.35);
  color: #fff;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(9, 11, 16, 0.96)),
    radial-gradient(circle at 85% 30%, rgba(239, 61, 61, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  font-family: "New Rocker", cursive;
  font-size: clamp(1.2rem, 6vw, 3.8rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  margin: 0 0 1.3rem;
  text-transform: none;
}

.hero-copy h1 span {
  color: #f1d0d0;
  font-size: 0.46em;
  display: block;
  letter-spacing: 0.05em;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 2.3rem 0 0;
}

.hero-stats li {
  min-width: 120px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  display: flex;
  justify-content: center;
}

.panel-glow {
  position: absolute;
  width: min(70vw, 500px);
  height: min(70vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 61, 61, 0.25), transparent 60%);
  filter: blur(10px);
  transform: translateY(20px);
}

.event-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 420px);
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 18, 24, 0.92), rgba(9, 12, 17, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 61, 61, 0.15), 0 0 30px rgba(239, 61, 61, 0.18);
  transform: rotate(2deg);
  animation: glitchCard 2.8s infinite steps(1, end);
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: -2%;
  border-radius: 28px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
  animation: glitchScan 0.18s steps(2, end) infinite;
  pointer-events: none;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239, 61, 61, 0.12), transparent 22%, transparent 50%, rgba(75, 130, 255, 0.08), transparent 78%, rgba(239, 61, 61, 0.12));
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: glitchBand 2.3s infinite steps(1, end);
  pointer-events: none;
}

.event-tag {
  position: relative;
  z-index: 1;
  color: var(--primary-2);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  margin-bottom: 1rem;
  animation: textPulse 1.2s infinite alternate;
}

.event-card h2,
.event-card .event-meta,
.event-card .band-list,
.event-card .inline-link {
  position: relative;
  z-index: 1;
}

.event-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.06em;
  margin-bottom: 1.4rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.band-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.band-list span,
.bands span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  color: #f5f7fa;
}

.inline-link {
  color: #fff;
  font-weight: 600;
}

.next-event {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(11, 13, 18, 0.45);
}

.show-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: linear-gradient(180deg, rgba(19, 22, 29, 0.95), rgba(11, 13, 18, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  margin-bottom: 2rem;
}

.show-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(239, 61, 61, 0.2), rgba(255, 138, 67, 0.08));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.show-date .month,
.show-date .year {
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.2rem 0.2rem;
}

.show-date .day {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0.4rem 0;
}

.show-body {
  padding: 2.2rem 2.2rem 2rem;
}

.show-kicker {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
}

.show-body h3 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

.show-body > p {
  max-width: 680px;
  line-height: 1.8;
  color: var(--muted);
}

.show-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.2rem;
}

.show-details div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(239, 61, 61, 0.18), rgba(255, 138, 67, 0.18));
  box-shadow: 0 10px 26px rgba(239, 61, 61, 0.18);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(239, 61, 61, 0.24);
}

.label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.bands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.past-events {
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.25), rgba(9, 11, 14, 0));
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 162px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(239, 61, 61, 0.3), rgba(255, 255, 255, 0.06));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 153px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 8px rgba(239, 61, 61, 0.12);
}

.year-pill {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #ebeff4;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 12px;
}

.year-content {
  padding-right: 0.5rem;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.show-slot {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.show-name {
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.3;
}

.band-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.band-pair span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.5rem;
  border-radius: 999px;
  background: rgba(239, 61, 61, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.2;
  color: #f2f6fb;
}

.timeline-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.crew-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.volunteers-panel {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 22, 29, 0.9), rgba(10, 12, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.volunteers-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 52px;
  margin-bottom: 1rem;
  text-align: center;
}

.heart-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(239, 61, 61, 0.12);
}

.volunteers-panel .eyebrow {
  margin: 0;
  font-size: clamp(0.7rem, 1vw, 1.1rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
  color: #fff1f1;
  text-shadow: 0 0 18px rgba(239, 61, 61, 0.28);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
}

.volunteer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.volunteer-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 16px rgba(239, 61, 61, 0.08);
}

.crew-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.crew-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.2), rgba(8, 10, 14, 0.82) 52%, rgba(8, 10, 14, 0.96));
}

.crew-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 67, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.crew-card--claus {
  background-image: url("crew/claus.jpg");
}

.crew-card--kenneth {
  background-image: url("crew/kenneth.jpg");
}

.crew-card--trine {
  background-image: url("crew/trine.jpg");
}

.crew-card > * {
  position: relative;
  z-index: 1;
}

.avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 24px rgba(239, 61, 61, 0.25);
}

.crew-content {
  display: flex;
  flex-direction: column;
}

.crew-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.role {
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 0.8rem;
}

.crew-card p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.venue-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(239, 61, 61, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-copy h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.venue-copy p:last-child,
.venue-meta p {
  color: var(--muted);
  line-height: 1.8;
}

.venue-meta {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.venue-meta p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-meta span {
  color: var(--text);
  min-width: 90px;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glitchCard {
  0%,
  100% {
    transform: rotate(2deg) translate(0, 0) scale(1);
    filter: hue-rotate(0deg) brightness(1) contrast(1);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 61, 61, 0.15), 0 0 30px rgba(239, 61, 61, 0.18);
    border-color: rgba(255, 255, 255, 0.09);
  }
  8% {
    transform: rotate(2deg) translate(-4px, 0) scale(1.01);
    filter: hue-rotate(-18deg) brightness(1.2) contrast(1.15);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 138, 67, 0.35), 0 0 45px rgba(239, 61, 61, 0.26);
    border-color: rgba(255, 138, 67, 0.45);
  }
  9% {
    transform: rotate(2.6deg) translate(3px, -1px) scale(1.02);
    filter: hue-rotate(22deg) brightness(1.3) contrast(1.2);
  }
  10% {
    transform: rotate(1.8deg) translate(-2px, 1px) scale(0.995);
  }
  12% {
    transform: rotate(2.2deg) translate(5px, 0) scale(1.015);
    filter: brightness(1.1);
  }
  13% {
    transform: rotate(1.6deg) translate(-3px, 0) scale(1.01);
  }
  14% {
    transform: rotate(2.5deg) translate(0, 0) scale(1);
    filter: hue-rotate(0deg) brightness(1) contrast(1);
  }
  44% {
    transform: rotate(2.1deg) translate(0, 0) scale(1);
  }
  45% {
    transform: rotate(-1.2deg) translate(-5px, 0) scale(1.02);
    filter: hue-rotate(-12deg) brightness(1.18);
  }
  46% {
    transform: rotate(2.8deg) translate(4px, 0) scale(1.025);
    filter: hue-rotate(18deg) brightness(1.25);
  }
  47% {
    transform: rotate(1.8deg) translate(-2px, 0) scale(1.01);
  }
  48% {
    transform: rotate(2deg) translate(0, 0) scale(1);
  }
}

@keyframes glitchScan {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  10% {
    transform: translate(-3%, 0);
    opacity: 0.7;
  }
  12% {
    transform: translate(4%, 0);
    opacity: 0.5;
  }
  18% {
    transform: translate(-2%, 0);
    opacity: 0.8;
  }
  44% {
    transform: translate(3%, 0);
    opacity: 0.6;
  }
  46% {
    transform: translate(-4%, 0);
    opacity: 0.75;
  }
}

@keyframes glitchBand {
  0%,
  100% {
    transform: translateX(-6%) scaleX(1);
    opacity: 0.15;
  }
  8% {
    transform: translateX(10%) scaleX(1.08);
    opacity: 0.8;
  }
  9% {
    transform: translateX(-12%) scaleX(0.9);
    opacity: 0.65;
  }
  11% {
    transform: translateX(8%) scaleX(1.12);
    opacity: 0.5;
  }
  45% {
    transform: translateX(-8%) scaleX(1.06);
    opacity: 0.55;
  }
  46% {
    transform: translateX(10%) scaleX(0.92);
    opacity: 0.75;
  }
}

@keyframes textPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 138, 67, 0.2);
    filter: brightness(0.98);
  }
  8%,
  9%,
  13%,
  15% {
    text-shadow: 0 0 12px rgba(255, 138, 67, 0.7), 0 0 22px rgba(239, 61, 61, 0.5), 0 0 30px rgba(239, 61, 61, 0.35);
    filter: brightness(1.35);
  }
  10% {
    text-shadow: 0 0 4px rgba(255, 138, 67, 0.4);
    filter: brightness(1.1);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .show-card,
  .venue-card,
  .crew-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 1.4rem;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline-item {
    display: block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 0.25rem;
  }

  .timeline-item::before {
    left: 10px;
  }

  .year-pill {
    display: inline-flex;
    justify-self: start;
    margin: 0 0 0.9rem;
    min-width: 82px;
    font-size: 0.8rem;
  }

  .year-content {
    padding-right: 0;
  }

  .show-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .show-slot {
    min-height: 92px;
  }

  .show-date {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
  }

  .nav {
    min-height: 72px;
    padding: 0.5rem 0;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .brand img {
    width: 120px;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-cta {
    padding: 0.7rem 0.9rem;
    font-size: 0.72rem;
  }

  .nav-toggle {
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .toggle-bars {
    width: 16px;
  }

  .nav-panel.open {
    max-height: 260px;
  }

  .nav-links {
    font-size: 0.68rem;
    gap: 0.75rem 0.9rem;
  }

  .timeline {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    display: block;
    padding: 0;
    margin-bottom: 0.5rem;
    min-height: 0;
  }

  .timeline-item::before {
    display: none;
  }

  .year-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(239, 61, 61, 0.18), rgba(255, 138, 67, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ebeff4;
    cursor: pointer;
  }

  .year-pill::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    color: var(--primary-2);
  }

  .timeline-item.expanded .year-pill::after {
    content: "−";
  }

  .year-content {
    display: none;
    padding: 0.65rem 0 0;
  }

  .timeline-item.expanded .year-content {
    display: block;
  }

  .show-grid {
    gap: 0.45rem;
    grid-template-columns: 1fr;
  }

  .show-slot {
    padding: 0.7rem 0.8rem;
    min-height: 70px;
    gap: 0.35rem;
  }

  .show-name {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .band-pair {
    gap: 0.25rem;
  }

  .band-pair span {
    padding: 0.2rem 0.32rem;
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .section {
    padding: 96px 0;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .show-details {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}
