:root {
  color-scheme: dark;

  --night: #050315;
  --night-deep: #010108;
  --ink: #090014;

  --acid: #b8ff00;
  --green: #00ff99;
  --pink: #ff3df2;
  --hot-pink: #ff187f;
  --cyan: #00e7ff;
  --yellow: #fff200;
  --orange: #ff7a00;
  --purple: #8f35ff;

  --paper: #f2ebbb;
  --dead: #8e8aa0;

  --mono: "Courier New", Courier, ui-monospace, monospace;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--night-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: var(--mono);
  overflow-x: hidden;

  background:
    radial-gradient(circle at 12% 12%, rgba(255,61,242,.20), transparent 23rem),
    radial-gradient(circle at 85% 20%, rgba(0,231,255,.14), transparent 27rem),
    radial-gradient(circle at 46% 65%, rgba(184,255,0,.08), transparent 30rem),
    linear-gradient(180deg, #08021a 0%, #130018 40%, #04010d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.035) 0 1px,
      transparent 1px 4px
    );

  mix-blend-mode: screen;
  opacity: .6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    linear-gradient(90deg, transparent 49.5%, rgba(0,231,255,.06) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,61,242,.05) 50%, transparent 50.5%);

  background-size: 68px 68px;
}

a {
  color: inherit;
}

::selection {
  color: #000;
  background: var(--yellow);
}

.midway-lights {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: .6rem;
  z-index: 110;

  background:
    repeating-linear-gradient(
      90deg,
      var(--pink) 0 24px,
      var(--yellow) 24px 48px,
      var(--cyan) 48px 72px,
      var(--acid) 72px 96px
    );

  box-shadow:
    0 0 18px rgba(255,61,242,.8),
    0 0 34px rgba(0,231,255,.35);
}

.jamboree-shell {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0 3rem;
}

.event-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: 1.4rem;
  padding: .75rem 1rem;

  border: 2px solid var(--cyan);
  background: rgba(2,2,10,.82);
  box-shadow:
    5px 5px 0 rgba(255,61,242,.25),
    -3px -3px 0 rgba(184,255,0,.14);

  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-nav a {
  text-decoration: none;
}

.brand {
  color: var(--yellow);
}

.terminal-link {
  color: var(--green);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--paper);
}

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

.big-top {
  position: relative;
  overflow: hidden;

  border: 4px solid var(--yellow);
  background:
    radial-gradient(circle at 50% 0, rgba(255,242,0,.10), transparent 28rem),
    repeating-linear-gradient(
      110deg,
      rgba(255,61,242,.07) 0 22px,
      rgba(0,231,255,.04) 22px 44px
    ),
    #0b0314;

  box-shadow:
    12px 12px 0 rgba(255,61,242,.34),
    -8px -7px 0 rgba(0,231,255,.22),
    0 0 4rem rgba(255,122,0,.13);
}


.marquee-sign {
  position: relative;
  margin: clamp(.8rem, 2vw, 1.5rem);
  padding: 1rem;

  border: 7px double var(--yellow);
  background: #100013;

  box-shadow:
    inset 0 0 3rem rgba(0,0,0,.7),
    0 0 2rem rgba(255,242,0,.16);

  transform: rotate(-.08deg);
}

.jamboree-marquee-art {
  display: block;
  width: 100%;
  height: auto;

  border: 2px solid rgba(255,242,0,.35);

  filter:
    saturate(1.08)
    contrast(1.03)
    drop-shadow(0 0 1.2rem rgba(255,61,242,.24));
}

.bulb-frame {
  position: absolute;
  inset: .55rem;
  z-index: 2;
  pointer-events: none;

  border: 4px solid #6b5600;
  border-radius: .35rem;

  box-shadow:
    0 0 8px rgba(255,242,0,.42),
    inset 0 0 8px rgba(255,242,0,.16);
}

.marquee-bulb {
  position: absolute;
  width: 22px;
  height: 22px;

  border: 2px solid #6d5100;
  border-radius: 50%;

  background: #c58f00;

  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.18),
    0 0 3px rgba(255,190,0,.25);

  transform: translate(-50%, -50%) scale(.82);

  transition:
    background 55ms linear,
    border-color 55ms linear,
    box-shadow 55ms linear,
    transform 55ms linear;
}

.marquee-bulb.bulb-head {
  background: #fffde0;
  border-color: var(--yellow);

  box-shadow:
    inset 0 0 0 2px #fff,
    0 0 8px var(--yellow),
    0 0 20px var(--yellow),
    0 0 30px rgba(255,242,0,.55);

  transform: translate(-50%, -50%) scale(1.18);
}

.marquee-bulb.bulb-tail-1 {
  background: var(--cyan);
  border-color: #bfffff;

  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.65),
    0 0 8px var(--cyan),
    0 0 16px rgba(0,231,255,.7);

  transform: translate(-50%, -50%) scale(1.07);
}

.marquee-bulb.bulb-tail-2 {
  background: var(--pink);
  border-color: #ffc2f8;

  box-shadow:
    0 0 7px var(--pink),
    0 0 13px rgba(255,61,242,.6);

  transform: translate(-50%, -50%) scale(.98);
}

.marquee-bulb.bulb-tail-3 {
  background: var(--acid);
  border-color: #eaff9c;

  box-shadow:
    0 0 6px var(--acid),
    0 0 11px rgba(184,255,0,.45);

  transform: translate(-50%, -50%) scale(.92);
}

.marquee-bulb.bulb-tail-4 {
  background: var(--orange);
  border-color: #ffd09a;

  box-shadow:
    0 0 6px var(--orange),
    0 0 12px rgba(255,122,0,.55);

  transform: translate(-50%, -50%) scale(.89);
}

.marquee-bulb.bulb-tail-5 {
  background: var(--purple);
  border-color: #d8b6ff;

  box-shadow:
    0 0 6px var(--purple),
    0 0 12px rgba(143,53,255,.55);

  transform: translate(-50%, -50%) scale(.86);
}

.marquee-bulb.bulb-tail-6 {
  background: var(--green);
  border-color: #b8ffe0;

  box-shadow:
    0 0 5px var(--green),
    0 0 10px rgba(0,255,153,.45);

  transform: translate(-50%, -50%) scale(.84);
}

.marquee-bulb.bulb-short {
  background: #fff;
  border-color: #fff;

  box-shadow:
    0 0 10px #fff,
    0 0 22px var(--cyan),
    0 0 34px var(--pink);

  transform: translate(-50%, -50%) scale(1.25);
}

.ticket-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 3px dashed var(--paper);
  border-bottom: 3px dashed var(--paper);

  background: var(--pink);
  color: #080008;

  font-family: var(--display);
  font-size: clamp(.8rem, 1.6vw, 1.35rem);
  letter-spacing: .05em;
  text-align: center;
}

.ticket-strip span {
  padding: .65rem .4rem;
  border-right: 2px dashed rgba(0,0,0,.45);
}

.ticket-strip span:last-child {
  border-right: 0;
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1.4rem;
  text-align: center;
}

.hero-kicker {
  color: var(--acid);
  font-weight: 900;
  letter-spacing: .08em;
}

.hero-copy p:last-child {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.72;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.showcard {
  grid-column: span 6;
  position: relative;
  overflow: hidden;

  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);

  border: 3px solid var(--cyan);

  background:
    linear-gradient(135deg, rgba(0,231,255,.09), transparent 45%),
    rgba(5,3,15,.94);

  box-shadow:
    8px 8px 0 rgba(0,231,255,.16),
    -4px -4px 0 rgba(255,61,242,.14);
}

.showcard:nth-child(even) {
  transform: rotate(.25deg);
}

.showcard:nth-child(odd) {
  transform: rotate(-.2deg);
}

.showcard-wide {
  grid-column: span 12;
}

.showcard-pink {
  border-color: var(--pink);

  box-shadow:
    8px 8px 0 rgba(255,61,242,.19),
    -4px -4px 0 rgba(184,255,0,.12);
}

.showcard-yellow {
  border-color: var(--yellow);

  box-shadow:
    8px 8px 0 rgba(255,242,0,.16),
    -4px -4px 0 rgba(0,231,255,.12);
}

.show-label {
  margin: 0 0 .7rem;
  color: var(--acid);

  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.showcard h2,
.bulletin h2 {
  color: var(--yellow);

  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .9;
  text-transform: uppercase;

  text-shadow:
    3px 2px 0 var(--pink),
    -2px -1px 0 var(--cyan);
}

.showcard p {
  max-width: 70ch;
  line-height: 1.65;
}

.fine-print {
  color: var(--dead);
  font-size: .82rem;
}

.stamp {
  display: inline-block;

  margin-top: 1rem;
  padding: .45rem .65rem;

  border: 3px solid currentColor;

  color: var(--pink);

  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: .07em;

  transform: rotate(-2deg);
}

.finale {
  text-align: center;
  border-color: var(--acid);

  background:
    radial-gradient(circle at 50% 50%, rgba(184,255,0,.11), transparent 35rem),
    #09020f;
}

.finale p {
  margin-left: auto;
  margin-right: auto;
}

.bulletin {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;

  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);

  border: 4px dashed var(--paper);
  background: #180018;

  box-shadow: 10px 10px 0 rgba(255,122,0,.2);
}

.bulletin p {
  line-height: 1.65;
}

.event-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;

  margin-top: 2.5rem;
  padding: 1rem;

  border-top: 2px solid var(--pink);

  color: var(--dead);
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

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

.event-footer a:hover,
.event-footer a:focus-visible {
  color: var(--yellow);
}

@media (max-width: 820px) {
  .jamboree-shell {
    width: min(100% - 1rem, var(--max));
  }

  .event-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .marquee-sign {
    margin: .6rem;
    padding: .65rem;
  }

  .bulb-frame {
    inset: .3rem;
  }

  .marquee-bulb {
    width: 16px;
    height: 16px;
  }

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

  .ticket-strip span {
    border-right: 0;
    border-bottom: 1px dashed rgba(0,0,0,.45);
  }

  .ticket-strip span:last-child {
    border-bottom: 0;
  }

  .showcard,
  .showcard-wide {
    grid-column: span 12;
  }

  .bulletin {
    grid-template-columns: 1fr;
  }
}

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

  .marquee-bulb {
    transition: none;
  }
}

/* Extra marquee electrical instability */

.marquee-bulb.bulb-ghost {
  background: var(--purple);
  border-color: var(--cyan);

  box-shadow:
    0 0 5px var(--purple),
    0 0 13px var(--cyan);

  opacity: .78;
  transform: translate(-50%, -50%) scale(.78);
}

.marquee-bulb.bulb-dead {
  background: #261900;
  border-color: #3d2d05;

  box-shadow:
    inset 0 0 6px rgba(0,0,0,.85);

  opacity: .45;
  transform: translate(-50%, -50%) scale(.72);
}

.marquee-bulb.bulb-spark {
  background: white;
  border-color: white;

  box-shadow:
    0 0 8px white,
    0 0 17px var(--yellow),
    0 0 28px var(--cyan),
    0 0 40px var(--pink);

  transform: translate(-50%, -50%) scale(1.38);
}

.marquee-bulb.bulb-overvolt {
  background: var(--pink);
  border-color: white;

  box-shadow:
    0 0 8px white,
    0 0 18px var(--pink),
    0 0 30px var(--purple);

  transform:
    translate(-50%, -50%)
    scale(1.22)
    rotate(8deg);
}

/* MIDWAY RADIO */

.midway-radio {
  position: relative;
  margin: 1.5rem clamp(1rem, 3vw, 2.5rem) 0;

  border: 3px solid var(--cyan);
  background:
    linear-gradient(135deg, rgba(0,231,255,.08), transparent 38%),
    linear-gradient(315deg, rgba(255,61,242,.10), transparent 42%),
    #08020f;

  box-shadow:
    7px 7px 0 rgba(255,61,242,.22),
    -4px -4px 0 rgba(184,255,0,.12);
}

.radio-sign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;

  padding: .75rem 1rem;

  border-bottom: 2px dashed var(--paper);
  background: #160016;
}

.radio-on-air {
  color: var(--hot-pink);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .08em;
  text-shadow: 0 0 8px var(--hot-pink);
}

.radio-eyebrow {
  margin: 0 0 .15rem;
  color: var(--acid);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.radio-sign h2 {
  margin: 0;

  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: .9;
  letter-spacing: .04em;

  text-shadow:
    2px 2px 0 var(--pink),
    -2px 0 var(--cyan);
}

.radio-status {
  padding: .4rem .6rem;

  border: 1px solid var(--green);

  color: var(--green);
  background: rgba(0,255,153,.06);

  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.midway-radio[data-radio-state="playing"] .radio-status {
  color: #000;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,153,.5);
}

.midway-radio[data-radio-state="error"] .radio-status {
  color: var(--yellow);
  border-color: var(--orange);
  background: rgba(255,122,0,.12);
}

.radio-console {
  padding: 1rem;
}

.radio-track {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;

  margin-bottom: 1rem;
}

.radio-track-number {
  min-width: 3.2rem;

  color: var(--pink);

  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
}

.radio-track strong,
.radio-track span {
  display: block;
}

.radio-track strong {
  color: var(--paper);
  font-size: clamp(.9rem, 1.5vw, 1.08rem);
}

.radio-track div span {
  margin-top: .25rem;
  color: var(--cyan);
  font-size: .7rem;
  letter-spacing: .12em;
}

.radio-controls {
  display: grid;
  grid-template-columns: auto auto auto minmax(12rem, 1fr) minmax(8rem, .28fr);
  gap: .65rem;
  align-items: center;
}

.radio-button {
  min-width: 3rem;
  min-height: 2.7rem;

  border: 2px outset var(--paper);

  color: #000;
  background: var(--cyan);

  font: 900 .9rem var(--mono);
  cursor: pointer;

  box-shadow: 3px 3px 0 rgba(255,61,242,.35);
}

.radio-button:hover,
.radio-button:focus-visible {
  background: var(--yellow);
}

.radio-play {
  min-width: 3.6rem;
  background: var(--acid);
}

.radio-progress-wrap {
  display: grid;
  grid-template-columns: 3rem minmax(6rem, 1fr) 3rem;
  gap: .55rem;
  align-items: center;

  color: var(--paper);
  font-size: .68rem;
}

.radio-progress,
.radio-volume input {
  width: 100%;
  accent-color: var(--pink);
}

.radio-volume {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem;
  align-items: center;

  color: var(--acid);
  font-size: .65rem;
  font-weight: 900;
}

.radio-ticker {
  overflow: hidden;

  margin-top: 1rem;
  padding: .35rem .55rem;

  border-top: 1px dashed var(--purple);
  border-bottom: 1px dashed var(--purple);

  color: var(--dead);
  background: rgba(0,0,0,.35);

  font-size: .62rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.radio-ticker span {
  display: inline-block;
  min-width: 100%;
  animation: radio-crawl 24s linear infinite;
}

@keyframes radio-crawl {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-110%);
  }
}

@media (max-width: 820px) {
  .midway-radio {
    margin: .8rem .6rem 0;
  }

  .radio-sign {
    grid-template-columns: 1fr auto;
  }

  .radio-on-air {
    grid-column: 1 / -1;
  }

  .radio-controls {
    grid-template-columns: repeat(3, auto);
  }

  .radio-progress-wrap,
  .radio-volume {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .radio-ticker span {
    animation: none;
  }
}

/* MIDWAY HEADER */

.event-nav {
  position: relative;
  min-height: 4.8rem;

  padding: .6rem .8rem;

  border: 3px solid var(--cyan);

  background:
    linear-gradient(90deg, rgba(255,61,242,.08), transparent 30%),
    linear-gradient(270deg, rgba(184,255,0,.06), transparent 30%),
    #07020d;

  box-shadow:
    0 5px 0 rgba(255,61,242,.24),
    0 -2px 0 rgba(184,255,0,.12),
    inset 0 0 1.5rem rgba(0,231,255,.04);
}

.event-nav::before {
  content: "ADMIT ALL FREAKS";
  position: absolute;
  top: -8px;
  left: 50%;
  padding: 0 .65rem;

  color: #000;
  background: var(--yellow);

  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .18em;

  transform: translateX(-50%) rotate(-.5deg);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brand {
  display: grid;
  gap: .12rem;
  text-decoration: none;
}

.brand-main {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: .05em;

  text-shadow:
    2px 1px 0 var(--pink),
    -1px 0 var(--cyan);
}

.brand-sub {
  color: var(--dead);
  font-size: .48rem;
  letter-spacing: .12em;
}

.glitch-egg {
  position: relative;

  width: 38px;
  height: 38px;
  padding: 0;

  border: 0;
  background: transparent;

  cursor: pointer;
  opacity: .22;

  filter:
    grayscale(.55)
    saturate(.6);

  transition:
    opacity 120ms linear,
    filter 120ms linear,
    transform 120ms linear;
}

.glitch-egg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;

  filter:
    drop-shadow(2px 0 0 rgba(255,61,242,.4))
    drop-shadow(-2px 0 0 rgba(0,231,255,.35));
}

.glitch-egg:hover,
.glitch-egg:focus-visible {
  opacity: 1;
  filter: none;
  transform: scale(1.08) rotate(-2deg);
}

.glitch-egg-label {
  position: absolute;
  left: 50%;
  top: calc(100% + .45rem);

  width: max-content;
  max-width: 12rem;
  padding: .3rem .45rem;

  border: 1px solid var(--pink);

  color: var(--pink);
  background: #050006;

  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .11em;

  opacity: 0;
  pointer-events: none;

  transform: translateX(-50%) translateY(-4px);
  transition:
    opacity 100ms linear,
    transform 100ms linear;
}

.glitch-egg:hover .glitch-egg-label,
.glitch-egg:focus-visible .glitch-egg-label,
.glitch-egg.is-awake .glitch-egg-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-links {
  align-items: stretch;
  gap: .35rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;

  padding: .62rem .7rem;

  border-left: 1px dashed rgba(242,235,187,.28);

  color: var(--paper);

  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;

  transition:
    color 90ms linear,
    background 90ms linear,
    transform 90ms linear;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #000;
  background: var(--pink);

  transform: rotate(-1deg) translateY(-1px);
}

.terminal-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;

  padding: .6rem .75rem;

  border: 2px outset var(--green);

  color: var(--green);
  background: rgba(0,255,153,.05);

  text-decoration: none;

  box-shadow:
    3px 3px 0 rgba(0,255,153,.14);
}

.terminal-link strong {
  color: var(--acid);
  font-size: 1rem;
}

.terminal-link:hover,
.terminal-link:focus-visible {
  color: #000;
  background: var(--green);
}

.terminal-link:hover strong,
.terminal-link:focus-visible strong {
  color: #000;
}

.event-nav.glitch-hit {
  animation: header-glitch-hit 420ms steps(2, end);
}

.event-nav.glitch-hit .glitch-egg {
  opacity: 1;
  filter: none;

  animation: goat-glitch-hit 420ms steps(3, end);
}

@keyframes header-glitch-hit {
  0% {
    transform: translate(0);
  }

  18% {
    transform: translate(3px, -1px) skewX(-1deg);
    box-shadow:
      -7px 0 0 rgba(0,231,255,.4),
      7px 2px 0 rgba(255,61,242,.45);
  }

  34% {
    transform: translate(-4px, 1px) skewX(2deg);
  }

  52% {
    transform: translate(2px, 0);
    filter: saturate(2.4);
  }

  70% {
    transform: translate(-1px, -1px);
  }

  100% {
    transform: translate(0);
    filter: none;
  }
}

@keyframes goat-glitch-hit {
  0% {
    transform: translate(0) scale(1);
  }

  25% {
    transform: translate(-4px, 2px) scale(1.14);
  }

  50% {
    transform: translate(5px, -2px) scale(.92);
  }

  75% {
    transform: translate(-2px, 0) scale(1.2);
  }

  100% {
    transform: translate(0) scale(1);
  }
}

@media (max-width: 820px) {
  .event-nav {
    gap: .7rem;
  }

  .brand-lockup {
    width: 100%;
  }

  .glitch-egg {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    padding: .5rem .55rem;
  }
}

/* FLOATING MIDWAY RADIO */

.midway-radio {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;

  width: min(460px, calc(100vw - 2rem));
  margin: 0;

  max-height: calc(100vh - 2rem);
  overflow: auto;

  transform: translateY(0) scale(1);
  transform-origin: bottom right;

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.midway-radio.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(.94);
}

.radio-sign {
  grid-template-columns: auto 1fr auto;
}

.radio-sign-actions {
  display: grid;
  gap: .35rem;
  justify-items: end;
}

.radio-hide {
  appearance: none;

  padding: .24rem .4rem;
  border: 1px solid var(--pink);

  color: var(--pink);
  background: #090009;

  font: 900 .52rem var(--mono);
  letter-spacing: .08em;

  cursor: pointer;
}

.radio-hide:hover,
.radio-hide:focus-visible {
  color: #000;
  background: var(--pink);
}

.radio-reopen {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 96;

  padding: .65rem .8rem;

  border: 2px outset var(--cyan);

  color: #000;
  background: var(--cyan);

  font: 900 .66rem var(--mono);
  letter-spacing: .07em;

  cursor: pointer;

  box-shadow:
    4px 4px 0 rgba(255,61,242,.42),
    0 0 12px rgba(0,231,255,.3);
}

.radio-reopen:hover,
.radio-reopen:focus-visible {
  background: var(--yellow);
}

.radio-reopen[hidden] {
  display: none;
}

@media (max-width: 620px) {
  .midway-radio {
    right: .5rem;
    bottom: .5rem;
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
  }

  .radio-reopen {
    right: .5rem;
    bottom: .5rem;
  }

  .radio-sign {
    grid-template-columns: 1fr auto;
  }

  .radio-on-air {
    grid-column: 1 / -1;
  }
}

/* COMPACT FLOATING RADIO LAYOUT */

.midway-radio {
  width: min(400px, calc(100vw - 2rem));
  max-height: none;
  overflow: visible;
}

.radio-console {
  display: grid;
  gap: .85rem;
}

.radio-track {
  margin-bottom: 0;
}

.radio-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.radio-button {
  width: 100%;
}

.radio-progress-wrap {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
  gap: .5rem;
  align-items: center;
}

.radio-volume {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: .5rem;
  align-items: center;

  padding-top: .25rem;
}

.radio-ticker {
  margin-top: 0;
}

.radio-reopen {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;

  width: min(430px, calc(100vw - 2rem));
  padding: .55rem .7rem;

  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255,61,242,.15), transparent 42%),
    #09020f;

  border: 2px solid var(--cyan);

  text-align: left;

  box-shadow:
    5px 5px 0 rgba(255,61,242,.35),
    0 0 14px rgba(0,231,255,.28);
}

.radio-reopen:hover,
.radio-reopen:focus-visible {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(184,255,0,.15), transparent 42%),
    #0d0510;
}

.radio-mini-station {
  color: var(--hot-pink);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;

  text-shadow: 0 0 6px var(--hot-pink);
}

.radio-mini-track {
  min-width: 0;
}

.radio-mini-track strong,
.radio-mini-track span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-mini-track strong {
  color: var(--yellow);
  font-size: .68rem;
}

.radio-mini-track span {
  margin-top: .12rem;
  color: var(--cyan);
  font-size: .55rem;
  letter-spacing: .07em;
}

.radio-mini-open {
  color: var(--acid);
  font-size: .58rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .midway-radio {
    width: calc(100vw - 1rem);
  }

  .radio-reopen {
    width: calc(100vw - 1rem);
  }

  .radio-sign {
    grid-template-columns: 1fr auto;
  }

  .radio-sign-actions {
    align-self: start;
  }

  .radio-on-air {
    grid-column: 1 / -1;
  }
}

/* file-tab style minimize control */

.midway-radio {
  overflow: visible;
}

.radio-sign-actions {
  position: relative;
}

.radio-hide {
  position: absolute;
  top: -1.9rem;
  right: -.15rem;
  z-index: 5;

  width: 2.5rem;
  height: 1.65rem;
  padding: 0;

  border: 2px solid var(--cyan);
  border-bottom: 0;
  border-radius: .35rem .35rem 0 0;

  color: #000;
  background: var(--cyan);

  font: 900 1rem/1 var(--mono);
  text-align: center;

  box-shadow:
    3px -3px 0 rgba(255,61,242,.28);

  cursor: pointer;
}

.radio-hide:hover,
.radio-hide:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* Minimize tab physically attached to top edge of floating radio */

.midway-radio {
  position: fixed;
  overflow: visible;
}

.radio-sign-actions {
  position: static;
}

.radio-hide {
  position: absolute;
  top: -1.55rem;
  right: 1rem;
  z-index: 20;

  width: 2.8rem;
  height: 1.65rem;
  padding: 0;

  border: 2px solid var(--cyan);
  border-bottom: 2px solid #07020d;
  border-radius: .4rem .4rem 0 0;

  color: #000;
  background: var(--cyan);

  font: 900 1.05rem/1 var(--mono);

  box-shadow:
    3px -3px 0 rgba(255,61,242,.28),
    0 -4px 12px rgba(0,231,255,.18);
}

.radio-hide:hover,
.radio-hide:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  border-bottom-color: #07020d;
}

/* Lower-profile minimize tab */

.radio-hide {
  top: -.95rem;
  right: 1rem;

  width: 2.35rem;
  height: 1.05rem;

  border-width: 1px;
  border-bottom-color: #07020d;
  border-radius: .28rem .28rem 0 0;

  font-size: .78rem;

  box-shadow:
    2px -2px 0 rgba(255,61,242,.18),
    0 -2px 6px rgba(0,231,255,.14);
}

/* BODY CARD ART */

.showcard-art {
  padding: 0;
}

.showcard-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;

  border-bottom: 2px solid rgba(255,255,255,.12);

  filter:
    saturate(1.05)
    contrast(1.02);
}

.showcard-image-wide {
  aspect-ratio: 16 / 9;
}

.showcard-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.showcard-art h2 {
  margin-top: .1rem;
}

.showcard-art .show-label {
  margin-top: 0;
}

.showcard-art:hover .showcard-image {
  filter:
    saturate(1.13)
    contrast(1.04)
    brightness(1.03);
}

@media (max-width: 820px) {
  .showcard-image,
  .showcard-image-wide {
    aspect-ratio: auto;
  }
}

/* image-only attraction cards */

.showcard-art {
  min-height: 0;
  background: #05020b;
}

.showcard-art .showcard-image {
  border-bottom: 0;
}

.showcard-art:hover .showcard-image {
  transform: scale(1.008);
}

.showcard-image {
  transition:
    filter 120ms linear,
    transform 120ms ease;
}

/* FLOATIER / GLITCHIER IMAGE CARDS */

.attraction-grid {
  align-items: start;
}

.showcard-art {
  width: 94%;
  justify-self: center;

  border-width: 2px;

  box-shadow:
    9px 11px 0 rgba(255,61,242,.12),
    -5px -4px 0 rgba(0,231,255,.10),
    0 0 18px rgba(184,255,0,.05);

  transform-origin: center center;

  animation:
    card-float 6.8s ease-in-out infinite,
    card-glitch 11s steps(2, end) infinite;
}

.showcard-art:nth-child(2) {
  width: 91%;
  transform: rotate(.45deg);
  animation-delay: -1.7s, -4.1s;
}

.showcard-art:nth-child(3) {
  width: 90%;
  transform: rotate(-.55deg);
  animation-delay: -3.2s, -7.3s;
}

.showcard-art:nth-child(4) {
  width: 92%;
  transform: rotate(.3deg);
  animation-delay: -4.8s, -2.6s;
}

.showcard-art:nth-child(5) {
  width: 91%;
  transform: rotate(-.4deg);
  animation-delay: -2.1s, -8.8s;
}

.showcard-art:nth-child(1) {
  width: 96%;
  animation-delay: -.8s, -5.6s;
}

.showcard-image {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 20px rgba(0,0,0,.18);

  will-change:
    transform,
    filter;
}

.showcard-art:hover {
  z-index: 4;

  box-shadow:
    12px 14px 0 rgba(255,61,242,.18),
    -7px -6px 0 rgba(0,231,255,.16),
    0 0 24px rgba(184,255,0,.08);
}

.showcard-art:hover .showcard-image {
  transform: scale(1.012) rotate(.08deg);

  filter:
    saturate(1.18)
    contrast(1.06)
    brightness(1.04);
}

@keyframes card-float {
  0%, 100% {
    translate: 0 0;
  }

  25% {
    translate: 0 -3px;
  }

  55% {
    translate: 1px 2px;
  }

  78% {
    translate: -1px -2px;
  }
}

@keyframes card-glitch {
  0%, 7%, 9%, 22%, 24%, 46%, 48%, 71%, 73%, 100% {
    filter: none;
  }

  8% {
    filter:
      drop-shadow(3px 0 0 rgba(255,61,242,.38))
      drop-shadow(-3px 0 0 rgba(0,231,255,.34));
  }

  23% {
    transform: translateX(2px) skewX(-.15deg);
    filter:
      saturate(1.25)
      brightness(1.05);
  }

  47% {
    transform: translate(-2px, 1px);
    filter:
      drop-shadow(2px 0 0 rgba(184,255,0,.25))
      drop-shadow(-2px 0 0 rgba(143,53,255,.28));
  }

  72% {
    transform: translate(1px, -1px) skewX(.12deg);
    filter:
      brightness(1.08)
      contrast(1.08);
  }
}

@media (max-width: 820px) {
  .showcard-art,
  .showcard-art:nth-child(n) {
    width: 97%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcard-art {
    animation: none;
  }
}

/* COMPACT INFO POSTER SECTION */

.attraction-grid {
  max-width: 1080px;
  margin: 2.2rem auto 0;
  gap: 1rem;
}

/* Open Decks: featured, but still clearly secondary to hero */
.showcard-art:nth-child(1) {
  grid-column: 2 / span 10;
  width: 82%;
  max-width: 860px;
}

/* Remaining posters */
.showcard-art:nth-child(2),
.showcard-art:nth-child(3),
.showcard-art:nth-child(4),
.showcard-art:nth-child(5) {
  width: 82%;
  max-width: 470px;
}

.showcard-art {
  min-height: 0;
  opacity: .96;
}

/* reduce visual aggression relative to hero */
.showcard-image {
  filter:
    saturate(.96)
    contrast(1.01)
    brightness(.94);
}

.showcard-art:hover .showcard-image {
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(1.02);
}

/* tone down the poster shadows too */
.showcard-art {
  box-shadow:
    6px 7px 0 rgba(255,61,242,.09),
    -3px -3px 0 rgba(0,231,255,.08),
    0 0 12px rgba(184,255,0,.04);
}

@media (max-width: 820px) {
  .attraction-grid {
    max-width: 620px;
  }

  .showcard-art:nth-child(n) {
    grid-column: span 12;
    width: 92%;
    max-width: 560px;
  }
}

/* ENLARGEABLE INFO POSTERS */

.showcard-image {
  cursor: zoom-in;
}

.showcard-image:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.poster-lightbox {
  width: min(96vw, 1500px);
  max-width: none;
  max-height: 94vh;
  padding: 0;

  border: 3px solid var(--cyan);
  background: #040108;

  overflow: visible;

  box-shadow:
    0 0 0 2px var(--pink),
    0 0 35px rgba(0,231,255,.32),
    0 0 70px rgba(255,61,242,.22);
}

.poster-lightbox::backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
}

.poster-lightbox-image {
  display: block;
  width: auto;
  max-width: 94vw;
  height: auto;
  max-height: 90vh;
  margin: auto;

  object-fit: contain;

  cursor: zoom-out;
}

.poster-lightbox-close {
  position: absolute;
  top: -.9rem;
  right: -.9rem;
  z-index: 5;

  width: 2.4rem;
  height: 2.4rem;
  padding: 0;

  border: 2px solid var(--yellow);
  border-radius: 50%;

  color: #000;
  background: var(--yellow);

  font: 900 1.4rem/1 var(--mono);
  cursor: pointer;

  box-shadow:
    3px 3px 0 var(--pink),
    0 0 12px rgba(255,242,0,.4);
}

.poster-lightbox-close:hover,
.poster-lightbox-close:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
}

.poster-modal-open {
  overflow: hidden;
}

/* MIDWAY RADIO ART HEADER */

.radio-sign-art {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #050108;
}

.radio-header-art {
  display: block;
  width: 100%;
  height: auto;
  max-height: 145px;
  object-fit: cover;
}

.radio-sign-art .radio-on-air {
  position: absolute;
  left: .55rem;
  bottom: .45rem;
  z-index: 3;

  padding: .2rem .38rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(2px);
}

.radio-sign-art .radio-sign-actions {
  position: absolute;
  right: .55rem;
  bottom: .45rem;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: .45rem;
}

.radio-sign-art .radio-status {
  padding: .2rem .38rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(2px);
}

/* keep minimize tab attached above whole player */
.radio-sign-art .radio-hide {
  position: absolute;
  top: -1px;
  right: 0;
}

/* FLOATING MIDWAY RADIO MARQUEE */

.midway-radio-art {
  position: fixed;
  right: 1.25rem;
  bottom: 18.6rem;
  z-index: 94;

  width: min(360px, calc(100vw - 2rem));

  pointer-events: none;

  transform:
    rotate(-1.2deg)
    translateZ(0);

  filter:
    drop-shadow(5px 7px 0 rgba(255,61,242,.16))
    drop-shadow(-3px -2px 0 rgba(0,231,255,.14));

  animation:
    radio-sign-float 7s ease-in-out infinite,
    radio-sign-glitch 13s steps(2,end) infinite;
}

.midway-radio-art img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes radio-sign-float {
  0%, 100% { translate: 0 0; }
  45%      { translate: 0 -3px; }
  72%      { translate: 1px 1px; }
}

@keyframes radio-sign-glitch {
  0%, 17%, 19%, 53%, 55%, 81%, 83%, 100% {
    filter:
      drop-shadow(5px 7px 0 rgba(255,61,242,.16))
      drop-shadow(-3px -2px 0 rgba(0,231,255,.14));
  }

  18% {
    translate: 2px -1px;
    filter:
      drop-shadow(4px 0 0 rgba(255,61,242,.28))
      drop-shadow(-4px 0 0 rgba(0,231,255,.25));
  }

  54% {
    translate: -2px 1px;
    filter:
      brightness(1.08)
      saturate(1.12);
  }

  82% {
    translate: 1px -1px;
    filter:
      contrast(1.08)
      brightness(1.04);
  }
}

@media (max-width: 820px) {
  .midway-radio-art {
    width: min(300px, calc(100vw - 2rem));
    right: 1rem;
    bottom: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .midway-radio-art {
    animation: none;
  }
}

/* MIDWAY RADIO — ATTACHED IMAGE TOPPER */

.midway-radio-art {
  display: none !important;
}

.midway-radio {
  overflow: visible;
}

.midway-radio-topper {
  position: absolute;
  left: 50%;
  top: -4.65rem;
  z-index: -1;

  width: 88%;
  height: 5rem;

  transform: translateX(-50%) rotate(-.35deg);

  overflow: hidden;

  pointer-events: none;

  border: 2px solid var(--pink);
  border-bottom: 0;
  border-radius: .35rem .35rem 0 0;

  background: #06020b;

  box-shadow:
    4px -4px 0 rgba(0,231,255,.14),
    -3px -3px 0 rgba(255,61,242,.12),
    0 -6px 18px rgba(255,61,242,.13);
}

.midway-radio-topper img {
  position: absolute;

  /* Use the original 1536x1024 artwork and crop it in-place */
  width: 132%;
  max-width: none;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: block;
}

/* Keep the minimize tab above everything */
.radio-hide {
  z-index: 30;
}

/* MIDWAY RADIO — IMAGE REPLACES HEADER TEXT */

.radio-sign-image {
  position: relative;
  display: block;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  background: #050108;
}

.radio-header-image {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
  object-position: center 52%;
}

.radio-sign-image .radio-sign-actions {
  position: absolute;
  right: .55rem;
  bottom: .45rem;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: .4rem;
}

.radio-sign-image .radio-status {
  padding: .18rem .34rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(2px);
}

/* hide old header text elements if any stale markup survives */
.radio-sign-image .radio-on-air,
.radio-sign-image .radio-eyebrow,
.radio-sign-image h2 {
  display: none;
}

/* RADIO HEADER IMAGE — exact live override */

.midway-radio-topper {
  display: none !important;
}

.radio-sign-image {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 0;
  background: #050108;
}

.radio-header-image {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center 50%;
}

.radio-sign-image .radio-sign-actions {
  position: absolute;
  right: .55rem;
  bottom: .45rem;
  z-index: 5;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* SHOW FULL MIDWAY RADIO HEADER ART */

.radio-sign-image {
  overflow: visible;
}

.radio-header-image {
  display: block;

  width: 100%;
  height: auto;

  max-height: none;

  object-fit: contain;
  object-position: center center;
}

.radio-sign-image .radio-sign-actions {
  right: .45rem;
  bottom: .35rem;
}

/* MIDWAY RADIO — COMPACT PASS */

.midway-radio {
  width: min(360px, calc(100vw - 1.5rem));
}

.radio-header-image {
  width: 92%;
  margin: .35rem auto 0;
}

.radio-console {
  padding: .7rem .8rem .75rem;
  gap: .6rem;
}

.radio-track {
  gap: .55rem;
}

.radio-track-number {
  font-size: 2.05rem;
}

.radio-track strong {
  font-size: .92rem;
}

.radio-track span {
  font-size: .68rem;
}

.radio-controls {
  gap: .45rem;
}

.radio-button {
  min-height: 2.45rem;
  padding: .35rem .45rem;
  font-size: .9rem;
}

.radio-progress-wrap,
.radio-volume {
  gap: .4rem;
}

.radio-progress-wrap {
  grid-template-columns: 2.35rem minmax(0,1fr) 2.35rem;
}

.radio-volume {
  grid-template-columns: 2.35rem minmax(0,1fr);
}

.radio-progress-wrap span,
.radio-volume span {
  font-size: .62rem;
}

.radio-ticker {
  padding-top: .35rem;
  font-size: .56rem;
}

/* tighten header/status overlay */
.radio-sign-image .radio-sign-actions {
  right: .35rem;
  bottom: .25rem;
}

.radio-status {
  font-size: .58rem;
  padding: .12rem .28rem;
}

/* MIDWAY RADIO — TIGHT FRAME + SMALLER TRANSPORT CONTROLS */

.midway-radio {
  width: min(330px, calc(100vw - 1.25rem));
}

/* tighter image framing */
.radio-header-image {
  width: 95%;
  margin: .28rem auto 0;
}

/* compress console body */
.radio-console {
  padding: .55rem .65rem .6rem;
  gap: .45rem;
}

.radio-track {
  gap: .4rem;
}

.radio-track-number {
  font-size: 1.7rem;
}

.radio-track strong {
  font-size: .82rem;
}

.radio-track span {
  font-size: .62rem;
}

/* smaller prev / play / next buttons */
.radio-controls {
  gap: .35rem;
}

.radio-button {
  min-height: 1.95rem;
  padding: .18rem .3rem;
  font-size: .78rem;
  line-height: 1;
}

.radio-play {
  font-size: .72rem;
}

/* tighten progress + volume */
.radio-progress-wrap {
  grid-template-columns: 2rem minmax(0,1fr) 2rem;
  gap: .3rem;
}

.radio-volume {
  grid-template-columns: 2rem minmax(0,1fr);
  gap: .3rem;
  padding-top: .1rem;
}

.radio-progress-wrap span,
.radio-volume span {
  font-size: .56rem;
}

.radio-ticker {
  padding-top: .2rem;
  font-size: .5rem;
}

/* tighten status badge against art */
.radio-sign-image .radio-sign-actions {
  right: .28rem;
  bottom: .18rem;
}

.radio-status {
  font-size: .52rem;
  padding: .1rem .22rem;
}

/* MIDWAY RADIO — TIGHT ART FRAME */

.radio-sign-image {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.radio-header-image {
  width: 100%;
  margin: 0;
  display: block;

  /* visually crop the remaining blank edge inside the PNG */
  clip-path: inset(4% 3% 4% 3%);

  /* compensate for the clip so it still fills the header */
  transform: scale(1.065);
  transform-origin: center center;
}

.radio-console {
  margin-top: -.15rem;
}

/* KEEP MINIMIZE TAB ANCHORED TO MODAL TOP */

.midway-radio {
  position: fixed;
  overflow: visible;
}

.radio-sign-actions {
  position: static !important;
}

.radio-hide {
  position: absolute !important;
  top: -.95rem !important;
  right: .7rem !important;
  bottom: auto !important;
  z-index: 40 !important;
}

/* SLIGHTLY LARGER RADIO STATUS BADGE */

.radio-status {
  font-size: .62rem;
  padding: .14rem .3rem;
  letter-spacing: .04em;
}

/* RADIO STATUS — ACTUALLY VISIBLE BUMP */

.radio-sign-image .radio-status {
  font-size: .72rem !important;
  padding: .18rem .38rem !important;
  letter-spacing: .045em;
  line-height: 1.1;
}

/* KEEP RADIO STATUS FROM CHANGING HEADER HEIGHT */

.radio-sign-image {
  position: relative;
  line-height: 0;
}

.radio-sign-image .radio-sign-actions {
  position: absolute !important;
  right: .3rem !important;
  bottom: .25rem !important;
  z-index: 20;
  line-height: 1;
}

.radio-sign-image .radio-status {
  display: block;
  margin: 0;
  font-size: .72rem !important;
  padding: .18rem .38rem !important;
  line-height: 1.05;
}

/* MINIMIZE TAB — MODAL TOP LEFT */

.midway-radio {
  position: fixed;
  overflow: visible;
}

.radio-sign-image .radio-sign-actions {
  position: absolute !important;
  right: .3rem !important;
  bottom: .25rem !important;
}

/* pull minimize control out of the status group */
.radio-hide {
  position: absolute !important;
  top: -.95rem !important;
  left: .7rem !important;
  right: auto !important;
  bottom: auto !important;

  z-index: 50 !important;
}

/* MINIMIZE TAB — ACTUALLY ANCHORED TO MODAL TOP-LEFT */

.midway-radio {
  position: fixed !important;
  overflow: visible !important;
}

.midway-radio > .radio-hide {
  position: absolute !important;

  top: -.95rem !important;
  left: .65rem !important;
  right: auto !important;
  bottom: auto !important;

  z-index: 100 !important;
}

/* status stays independently overlaid on the artwork */
.radio-sign-image .radio-sign-actions {
  position: absolute !important;
  right: .3rem !important;
  bottom: .25rem !important;
}

/* RADIO CLEANUP — NO STATUS BADGE, TAB ON MODAL */

.radio-status,
.radio-sign-actions {
  display: none !important;
}

.midway-radio {
  position: fixed !important;
  overflow: visible !important;
}

.midway-radio > .radio-hide {
  display: block !important;
  position: absolute !important;

  top: -.95rem !important;
  left: .65rem !important;
  right: auto !important;
  bottom: auto !important;

  z-index: 100 !important;
}

/* MINIMIZE TAB — DIRECT CHILD OF MODAL */

.midway-radio > .radio-hide {
  display: block !important;
  position: absolute !important;

  top: -.95rem !important;
  left: .65rem !important;
  right: auto !important;
  bottom: auto !important;

  z-index: 100 !important;
}
