:root {
  --bg: #070608;
  --black: #050406;
  --paper: #f1e6d5;
  --white: #f7efe4;
  --muted: #b6aaa1;
  --purple: #9b31ff;
  --pink: #ff2e9a;
  --acid: #d2df2f;
  --line: rgba(247, 239, 228, 0.18);
  --shadow: rgba(0, 0, 0, 0.74);
  --intro-progress: 0;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--white);
  background: var(--bg);
  font-family: Impact, Haettenschweiler, "Arial Black", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

button,
input,
textarea,
select { font: inherit; }

button { cursor: pointer; }

.video-scroll {
  position: relative;
  height: 260svh;
  background: #050406;
}

.video-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050406;
}

.intro-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) saturate(1.18) brightness(calc(.55 + (var(--intro-progress) * .28)));
  transform: scale(calc(1.08 - (var(--intro-progress) * .035))) rotate(calc((var(--intro-progress) - .5) * 2deg));
}

.video-grain,
.video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-grain {
  z-index: -2;
  opacity: .26;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.video-vignette {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 36%, rgba(255,46,154,.34), transparent 26%),
    radial-gradient(circle at 22% 80%, rgba(155,49,255,.34), transparent 32%),
    linear-gradient(90deg, rgba(5,4,6,.84), rgba(5,4,6,.24) 42%, rgba(5,4,6,.78)),
    linear-gradient(0deg, rgba(5,4,6,.95), transparent 28%, transparent 58%, rgba(5,4,6,.8));
}

.video-copy {
  width: min(1040px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(22px, 5vw, 56px);
  transform: translateY(calc(var(--intro-progress) * -24px));
  opacity: calc(1 - (var(--intro-progress) * .58));
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 13px 7px;
  color: var(--black);
  background: var(--acid);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 6px 6px 0 var(--pink);
  transform: rotate(-2deg);
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: -.02em;
  -webkit-text-stroke: 2.5px #050406;
  paint-order: stroke fill;
  text-shadow:
    -3px -3px 0 #050406,
    3px -3px 0 #050406,
    -3px 3px 0 #050406,
    3px 3px 0 #050406,
    6px 6px 0 rgba(255,46,154,.86),
    10px 10px 0 rgba(155,49,255,.62),
    14px 14px 0 rgba(0,0,0,.78);
}

h1 {
  max-width: 980px;
  color: var(--paper);
  font-size: clamp(48px, 10vw, 140px);
}

h1 span {
  display: block;
  transform: skew(-2deg);
}

h1 span:first-child {
  font-size: .86em;
  letter-spacing: .01em;
  word-spacing: .06em;
}

h1 span:nth-child(2) { color: var(--pink); }
h1 span:nth-child(3) { color: var(--acid); }

.subtitle {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(22px, 3.1vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #050406, 5px 5px 0 rgba(0,0,0,.55);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  gap: 10px;
  justify-items: center;
  transform: translateX(-50%);
  opacity: calc(1 - var(--intro-progress));
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.scroll-cue i {
  display: block;
  width: 2px;
  height: 46px;
  background: linear-gradient(var(--acid), var(--pink));
  animation: pulseLine 1.2s infinite ease-in-out;
}

@keyframes pulseLine {
  0%, 100% { transform: scaleY(.45); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.tickets-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 12%, rgba(255,46,154,.28), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(210,223,47,.16), transparent 26%),
    linear-gradient(135deg, #0a070b 0%, #160d17 45%, #050406 100%);
}

.tickets-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-1deg) scale(1.03);
}

.street-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.street-bg span {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,239,228,.14);
  text-stroke: 1px rgba(247,239,228,.14);
  font-size: clamp(46px, 10vw, 138px);
  line-height: .8;
  text-transform: uppercase;
  white-space: nowrap;
}

.street-bg span:nth-child(1) { right: -70px; top: 22px; transform: rotate(-8deg); }
.street-bg span:nth-child(2) { left: 12%; bottom: 40px; transform: rotate(7deg); }
.street-bg span:nth-child(3) { left: -30px; top: 42%; transform: rotate(-90deg); }

.poster-panel {
  position: relative;
  z-index: 1;
  transform: rotate(-1.5deg);
  filter: drop-shadow(14px 20px 0 rgba(0,0,0,.36));
}

.poster-panel::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  background: linear-gradient(135deg, var(--pink), var(--purple) 45%, var(--acid));
  clip-path: polygon(0 1%, 100% 0, 98% 96%, 3% 100%);
}

.poster {
  width: 100%;
  display: block;
  border: 4px solid #0b070b;
  outline: 2px solid rgba(247,239,228,.7);
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 1.2%, 99% 99%, 1.5% 100%);
  filter: contrast(1.08) saturate(1.08);
}

.compact-poster {
  max-width: 430px;
  justify-self: end;
}

.tape {
  position: absolute;
  width: 90px;
  height: 34px;
  z-index: 2;
  background: rgba(247,239,228,.52);
  box-shadow: 0 6px 12px rgba(0,0,0,.35);
  opacity: .85;
}

.tape-left { left: -24px; top: 34px; transform: rotate(-20deg); }
.tape-right { right: -22px; top: -4px; transform: rotate(18deg); }

.content {
  position: relative;
  z-index: 1;
}

.sales-card {
  max-width: 760px;
  padding: clamp(20px, 3.2vw, 40px);
  border: 3px solid rgba(247,239,228,.72);
  background: linear-gradient(135deg, rgba(18, 12, 19, .92), rgba(5, 4, 6, .96));
  box-shadow: 14px 14px 0 rgba(155, 49, 255, .26), 0 34px 110px var(--shadow);
}

.sales-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(247, 239, 228, .22);
  pointer-events: none;
}

h2 {
  color: var(--paper);
  font-size: clamp(42px, 6.8vw, 86px);
}

.description {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d7cfc7;
  font-family: "Arial Black", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.55;
  letter-spacing: .01em;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.info-strip div {
  padding: 14px 12px 12px;
  border: 2px solid rgba(247,239,228,.28);
  background: rgba(255,255,255,.035);
  box-shadow: 5px 5px 0 rgba(0,0,0,.55);
}

.info-strip span,
.section-head span,
.lineup span,
.transport span {
  display: block;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 13px;
}

.info-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--acid);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.tickets {
  display: grid;
  gap: 10px;
}

.section-head {
  display: grid;
  gap: 5px;
  margin-bottom: 3px;
}

.section-head small {
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}

.ticket-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: var(--paper);
  text-align: left;
  border: 3px solid #050406;
  background: linear-gradient(90deg, rgba(247,239,228,.12), rgba(247,239,228,.045));
  box-shadow: 6px 6px 0 rgba(0,0,0,.7);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ticket-card:hover {
  transform: translate(-3px, -3px) rotate(-.4deg);
  box-shadow: 10px 10px 0 rgba(255,46,154,.64);
  background: linear-gradient(90deg, rgba(255,46,154,.22), rgba(155,49,255,.16));
}

.ticket-card strong,
.ticket-card b {
  display: block;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
}

.ticket-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
}

.ticket-card b {
  color: var(--acid);
  font-size: clamp(30px, 3.5vw, 46px);
  white-space: nowrap;
}

.ticket-card.promo { border-color: var(--pink); }
.ticket-card.featured { background: linear-gradient(90deg, rgba(210,223,47,.2), rgba(255,46,154,.16)); }

.lineup,
.transport {
  margin-top: 18px;
  padding: 16px;
  border: 2px solid rgba(247,239,228,.22);
  background: rgba(0,0,0,.22);
}

.lineup p,
.transport p {
  margin: 7px 0 0;
  color: var(--paper);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 850;
  line-height: 1.35;
}

.lineup .dj {
  color: var(--acid);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}


.lineup .dj a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.lineup .dj a:hover {
  color: var(--pink);
  text-decoration: none;
  text-shadow:
    2px 2px 0 #050406,
    4px 4px 0 rgba(210,223,47,.55);
  transform: translateY(-1px);
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 9px;
}

.artist-links a {
  color: var(--acid);
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 #050406,
    4px 4px 0 rgba(255,46,154,.5);
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.artist-links a:hover,
.organizer a:hover {
  color: var(--pink);
  text-decoration: none;
  text-shadow:
    2px 2px 0 #050406,
    4px 4px 0 rgba(210,223,47,.55);
  transform: translateY(-1px);
}

.organizer {
  margin-top: 13px !important;
  color: var(--paper) !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #050406;
}

.organizer a {
  display: inline;
  margin-left: 4px;
  font-weight: 950;
  color: inherit;
}

.transport {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.map-link {
  flex: 0 0 auto;
  padding: 13px 16px;
  color: var(--black);
  border: 0;
  background: var(--acid);
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--pink);
}

.secure {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 860px) {
  .video-scroll { height: 220svh; }

  .video-copy {
    align-self: end;
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 84px);
    line-height: .9;
  }

  h1,
  h2 {
    -webkit-text-stroke: 1.8px #050406;
    text-shadow:
      -2px -2px 0 #050406,
      2px -2px 0 #050406,
      -2px 2px 0 #050406,
      2px 2px 0 #050406,
      5px 5px 0 rgba(255,46,154,.86),
      8px 8px 0 rgba(155,49,255,.62),
      11px 11px 0 rgba(0,0,0,.78);
  }

  .tickets-section {
    grid-template-columns: 1fr;
    padding: 28px 16px 40px;
  }

  .compact-poster {
    max-width: min(360px, 84vw);
    justify-self: center;
  }

  .sales-card {
    padding: 20px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .transport {
    align-items: stretch;
    flex-direction: column;
  }

  .map-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    font-size: 11px;
  }

  .subtitle {
    font-size: 22px;
  }

  .ticket-card {
    padding: 14px;
  }

  .ticket-card strong {
    font-size: 20px;
  }

  .ticket-card b {
    font-size: 34px;
  }
}

/* Mobile-first refinements */
@media (hover: none) and (pointer: coarse) {
  .ticket-card:hover {
    transform: none;
    box-shadow: 6px 6px 0 rgba(0,0,0,.7);
  }

  .ticket-card:active,
  .map-link:active {
    transform: translate(2px, 2px);
  }
}

@media (max-width: 720px) {
  body {
    letter-spacing: 0;
  }

  .video-scroll {
    height: 200svh;
  }

  .video-sticky {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .intro-video {
    object-position: center center;
    transform: scale(calc(1.14 - (var(--intro-progress) * .04))) rotate(calc((var(--intro-progress) - .5) * 1.4deg));
  }

  .video-vignette {
    background:
      radial-gradient(circle at 68% 28%, rgba(255,46,154,.24), transparent 30%),
      radial-gradient(circle at 20% 78%, rgba(155,49,255,.28), transparent 34%),
      linear-gradient(90deg, rgba(5,4,6,.76), rgba(5,4,6,.36) 48%, rgba(5,4,6,.72)),
      linear-gradient(0deg, rgba(5,4,6,.96), transparent 34%, transparent 54%, rgba(5,4,6,.82));
  }

  .video-copy {
    width: min(100% - 24px, 560px);
    padding: 18px 6px calc(84px + env(safe-area-inset-bottom));
    transform: translateY(calc(var(--intro-progress) * -16px));
  }

  .eyebrow {
    margin-bottom: 12px;
    padding: 7px 10px 6px;
    box-shadow: 4px 4px 0 var(--pink);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(43px, 14.7vw, 76px);
    line-height: .94;
    letter-spacing: .005em;
    word-break: normal;
    overflow-wrap: normal;
  }

  h1 span:first-child {
    font-size: .77em;
    letter-spacing: .035em;
    word-spacing: .08em;
  }

  .subtitle {
    max-width: 320px;
    margin-top: 18px;
    font-size: clamp(19px, 6vw, 28px);
    line-height: 1.04;
  }

  .scroll-cue {
    bottom: calc(16px + env(safe-area-inset-bottom));
    font-size: 10px;
    letter-spacing: .14em;
  }

  .scroll-cue i {
    height: 34px;
  }

  .tickets-section {
    min-height: auto;
    display: block;
    padding: 28px 14px calc(34px + env(safe-area-inset-bottom));
  }

  .street-bg span {
    font-size: clamp(50px, 19vw, 86px);
    opacity: .7;
  }

  .street-bg span:nth-child(1) { right: -96px; top: 28px; }
  .street-bg span:nth-child(2) { left: -12px; bottom: 26px; }
  .street-bg span:nth-child(3) { left: -72px; top: 48%; }

  .poster-panel {
    margin: 0 auto 26px;
    transform: rotate(-.8deg);
    filter: drop-shadow(8px 12px 0 rgba(0,0,0,.36));
  }

  .poster-panel::before {
    inset: -8px;
  }

  .poster {
    border-width: 3px;
  }

  .tape {
    width: 68px;
    height: 26px;
  }

  .tape-left { left: -13px; top: 22px; }
  .tape-right { right: -11px; top: -5px; }

  .sales-card {
    max-width: none;
    padding: 18px 14px 16px;
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(155, 49, 255, .25), 0 24px 70px var(--shadow);
  }

  .sales-card::before {
    inset: 7px;
  }

  h2 {
    font-size: clamp(40px, 13vw, 62px);
    line-height: .9;
  }

  .description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.48;
  }

  .info-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 18px 0;
  }

  .info-strip div {
    padding: 11px 8px 10px;
    box-shadow: 3px 3px 0 rgba(0,0,0,.55);
  }

  .info-strip span,
  .section-head span,
  .lineup span,
  .transport span {
    font-size: 10px;
    letter-spacing: .075em;
  }

  .info-strip strong {
    font-size: clamp(16px, 5vw, 22px);
  }

  .section-head {
    margin-bottom: 6px;
  }

  .section-head small,
  .ticket-card small,
  .secure {
    font-size: 12px;
    line-height: 1.25;
  }

  .ticket-card {
    min-height: 72px;
    gap: 10px;
    padding: 13px 12px;
    border-width: 2px;
    box-shadow: 4px 4px 0 rgba(0,0,0,.7);
  }

  .ticket-card strong {
    font-size: clamp(17px, 5.3vw, 22px);
    line-height: .96;
  }

  .ticket-card b {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lineup,
  .transport {
    margin-top: 14px;
    padding: 13px 12px;
  }

  .lineup p,
  .transport p {
    font-size: 13px;
  }

  .lineup .dj {
    font-size: 22px;
  }

  .organizer a {
    margin: 8px 0 0;
    font-size: 16px;
  }

  .map-link {
    min-height: 48px;
    padding: 13px 14px;
    box-shadow: 4px 4px 0 var(--pink);
  }
}

@media (max-width: 390px) {
  .video-copy {
    width: calc(100% - 18px);
  }

  h1 {
    font-size: clamp(38px, 14vw, 56px);
    -webkit-text-stroke: 1.35px #050406;
  }

  h1 span:first-child {
    font-size: .72em;
    letter-spacing: .04em;
  }

  h1,
  h2 {
    text-shadow:
      -1.5px -1.5px 0 #050406,
      1.5px -1.5px 0 #050406,
      -1.5px 1.5px 0 #050406,
      1.5px 1.5px 0 #050406,
      4px 4px 0 rgba(255,46,154,.86),
      6px 6px 0 rgba(155,49,255,.62),
      8px 8px 0 rgba(0,0,0,.78);
  }

  .subtitle {
    font-size: 18px;
  }

  .tickets-section {
    padding-inline: 10px;
  }

  .sales-card {
    padding-inline: 12px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-card b {
    align-self: flex-end;
    margin-top: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-cue i {
    animation: none;
  }

  .intro-video,
  .video-copy,
  .ticket-card,
  .map-link {
    transition: none;
  }
}

/* Festival visual lineup + links drawer */
.festival-lineup {
  overflow: hidden;
}

.festival-poster-card {
  position: relative;
  margin-top: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 3px solid #050406;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,46,154,.34), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(210,223,47,.2), transparent 28%),
    linear-gradient(135deg, rgba(247,239,228,.08), rgba(0,0,0,.38));
  box-shadow: 8px 8px 0 rgba(255,46,154,.5), 14px 14px 0 rgba(155,49,255,.36);
  transform: rotate(-.7deg);
  isolation: isolate;
}

.festival-poster-card::before {
  content: "KOALAB · NEW TALENTS · 17 JUL";
  position: absolute;
  inset: 10px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,239,228,.12);
  text-stroke: 1px rgba(247,239,228,.12);
  font-size: clamp(42px, 8vw, 92px);
  line-height: .82;
  text-transform: uppercase;
  word-break: break-word;
  opacity: .86;
  transform: rotate(-3deg);
}

.festival-kicker,
.festival-organizer {
  margin: 0 !important;
  color: var(--paper) !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: clamp(15px, 1.8vw, 20px) !important;
  line-height: 1 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-shadow: 2px 2px 0 #050406;
}

.festival-names {
  display: grid;
  gap: 4px;
  margin: 14px 0 12px;
}

.festival-names strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--paper);
  font-size: clamp(32px, 5.3vw, 62px);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.03em;
  -webkit-text-stroke: 1.8px #050406;
  paint-order: stroke fill;
  text-shadow:
    3px 3px 0 #050406,
    6px 6px 0 rgba(255,46,154,.72),
    9px 9px 0 rgba(155,49,255,.52);
}

.festival-names strong:nth-child(2),
.festival-names strong:nth-child(4) {
  color: var(--pink);
  margin-left: clamp(10px, 3vw, 34px);
}

.festival-names strong:nth-child(3),
.festival-names strong:nth-child(5) {
  color: var(--acid);
}

.festival-dj {
  margin: 10px 0 0 !important;
  color: var(--acid) !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: clamp(24px, 3.6vw, 42px) !important;
  line-height: .9 !important;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #050406, 6px 6px 0 rgba(255,46,154,.55);
}

.festival-dj b {
  color: inherit;
}

.festival-organizer {
  margin-top: 12px !important;
  color: var(--muted) !important;
  font-size: clamp(13px, 1.5vw, 16px) !important;
}

.drawer-trigger {
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--black);
  border: 0;
  background: var(--acid);
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--pink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.drawer-trigger:hover {
  transform: translate(-2px, -2px) rotate(-.4deg);
  box-shadow: 9px 9px 0 var(--pink);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(4px);
}

.links-drawer {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 80;
  width: min(720px, calc(100% - 22px));
  max-height: min(84svh, 720px);
  overflow-y: auto;
  padding: 12px clamp(16px, 4vw, 28px) calc(24px + env(safe-area-inset-bottom));
  color: var(--paper);
  border: 3px solid rgba(247,239,228,.72);
  border-bottom: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,46,154,.25), transparent 32%),
    linear-gradient(135deg, #140b16, #050406 62%);
  box-shadow: 0 -30px 90px rgba(0,0,0,.74), 10px -10px 0 rgba(155,49,255,.24);
  transform: translate(-50%, 110%);
  transition: transform .28s ease;
}

.links-drawer.is-open {
  transform: translate(-50%, 0);
}

.drawer-handle {
  width: 58px;
  height: 5px;
  margin: 2px auto 15px;
  border-radius: 99px;
  background: rgba(247,239,228,.34);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.drawer-head span {
  display: block;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
}

.drawer-head h3 {
  margin: 4px 0 0;
  color: var(--paper);
  font-size: clamp(30px, 7vw, 58px);
  line-height: .86;
  text-transform: uppercase;
  -webkit-text-stroke: 1.4px #050406;
  text-shadow: 4px 4px 0 rgba(255,46,154,.74), 7px 7px 0 rgba(155,49,255,.55);
}

.drawer-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--black);
  border: 0;
  background: var(--pink);
  font-size: 34px;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--acid);
}

.drawer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.drawer-links a {
  display: block;
  padding: 14px 13px 12px;
  color: var(--paper);
  text-decoration: none;
  border: 2px solid rgba(247,239,228,.28);
  background: rgba(255,255,255,.045);
  box-shadow: 5px 5px 0 rgba(0,0,0,.68);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.drawer-links a:hover {
  transform: translate(-2px, -2px) rotate(-.3deg);
  border-color: var(--pink);
  background: rgba(255,46,154,.13);
}

.drawer-links small {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.drawer-links strong {
  display: block;
  color: var(--acid);
  font-size: clamp(22px, 4vw, 32px);
  line-height: .92;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #050406, 4px 4px 0 rgba(255,46,154,.52);
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .festival-poster-card {
    padding: 17px 13px;
    box-shadow: 6px 6px 0 rgba(255,46,154,.5), 10px 10px 0 rgba(155,49,255,.36);
  }

  .festival-names strong {
    font-size: clamp(30px, 10.2vw, 50px);
    -webkit-text-stroke: 1.3px #050406;
  }

  .drawer-links {
    grid-template-columns: 1fr;
  }

  .drawer-trigger {
    min-height: 48px;
    box-shadow: 4px 4px 0 var(--pink);
  }
}
