* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  font-family: Arial, sans-serif;
}

:root {
  /* Boarding-pass footer height; the scene fits into what's left above it */
  --footer-h: clamp(64px, 9vh, 104px);
}

.terminal-page {
  width: 100%;
  height: calc(100vh - var(--footer-h));
  background: #050505;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.terminal-scene {
  position: relative;
  flex: 0 0 auto;
  /* Never taller than the space above the footer (1672x941 art aspect), so
     the whole scene fits on screen with no scrolling; stays top-pinned so
     the fixed header keeps covering the strip baked into the artwork. */
  width: min(100%, calc((100vh - var(--footer-h)) * 1672 / 941), 1920px);
  /* Lets scene-scaled elements (departures board text, cloud shuffle) size
     themselves in cqw units relative to the scene, not the viewport */
  container-type: inline-size;
}

/* Room continuation panels generated from the artwork's own edge pixels —
   they absorb whatever horizontal space the scene doesn't use, so wider
   windows show the room fading into shadow instead of black bars */
.room-fill {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.room-fill-left {
  background-image: url("images/room-left.png");
  /* tuck under the scene so flex rounding can't leave a black hairline gap */
  margin-right: -2px;
}

.room-fill-right {
  background-image: url("images/room-right.png");
  margin-left: -2px;
}

/* Covers the dark border column baked into the artwork's right edge
   (last pixel column of homepage.png) with the adjacent interior colors */
.edge-patch-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.2%;
  height: 100%;
  background: url("images/edge-right.png");
  background-size: 100% 100%;
  pointer-events: none;
}

.terminal-image {
  width: 100%;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Invisible clickable artist box */
.artist-zone {
  position: absolute;
  display: block;
  cursor: pointer;
}

.artist-cutout {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.artist-zone:hover .artist-cutout {
  opacity: 1;
  filter:
    drop-shadow(0 0 2px white)
    drop-shadow(0 0 6px rgba(55, 160, 255, 0.95))
    drop-shadow(0 0 14px rgba(55, 160, 255, 0.75));
}

/* Small game-style hover label */
.artist-zone span {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-8px);
  background: #050505; 
  color: white;
  border: 2px solid #333;
  padding: 7px 10px;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 120, 255, 0.45);
  transition: 0.2s ease;
}

.artist-zone:hover span {
  opacity: 1;
  transform: translateX(-50%) translateY(-14px);
}

/* Che clickable area */
.che {
  left: 27%;
  top: 20%;
  width: 8%;
  height: 46%;
}
.che-cutout {
  left: -115%;
  top: -7%;
  width: 328%;
  height: auto;
}
.osamason {
  left: 39%;
  top: 29%;
  width: 12%;
  height: 55%;
}

.osamason-cutout {
  position: absolute;
  left: -52%;
  top: 3%;
  width: 240%;
  height: auto;
}

/* Osamason's hover/click only triggers on his actual figure: the zone
   itself ignores the pointer, and an inner hit element carries a
   clip-path polygon traced from the cutout's alpha silhouette (clip-path
   clips hit-testing too). Hovering the hit element still :hovers the
   ancestor zone, so the cutout + glow reveal is unchanged and unclipped. */
.artist-zone.osamason {
  pointer-events: none;
}

.osamason-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(64.2% 6.7%, 53.1% 11.4%, 48.0% 16.2%, 44.9% 20.9%, 38.9% 25.7%, 30.2% 30.4%, 27.3% 35.1%, 24.4% 39.9%, 21.6% 44.6%, 20.2% 49.3%, 24.9% 54.1%, 31.1% 58.8%, 29.1% 63.6%, 27.3% 68.3%, 28.4% 73.0%, 43.1% 77.8%, 42.0% 82.5%, 39.3% 87.3%, 39.8% 92.0%, 38.4% 96.7%, 35.6% 100.0%, 37.1% 100.0%, 50.0% 100.0%, 62.7% 100.0%, 68.9% 100.0%, 100.0% 100.0%, 96.0% 96.7%, 88.9% 92.0%, 86.9% 87.3%, 88.0% 82.5%, 88.4% 77.8%, 99.8% 73.0%, 100.0% 68.3%, 100.0% 63.6%, 100.0% 58.8%, 100.0% 54.1%, 100.0% 49.3%, 100.0% 44.6%, 100.0% 39.9%, 100.0% 35.1%, 98.2% 30.4%, 91.8% 25.7%, 94.0% 20.9%, 90.4% 16.2%, 83.8% 11.4%, 70.0% 6.7%);
}

.lucki {
  left: 52%;
  top: 35%;
  width: 12%;
  height: 38%;
}

.lucki-cutout {
  position: absolute;
  left: -431%;
  top: -92%;
  width: 832%;
  height: auto;
}

.protect {
  left: 61%;
  top: 31%;
  width: 11%;
  height: 42%;
}

.protect-cutout {
  position: absolute;
  left: -548%;
  top: -73%;
  width: 900%;
  height: auto;
}

.tezzus {
  left: 71%;
  top: 28%;
  width: 10%;
  height: 47%;
}

.tezzus-cutout {
  position: absolute;
  left: -710%;
  top: -60%;
  width: 1000%;
  height: auto;
}

.nettspend {
  left: 79%;
  top: 27%;
  width: 10%;
  height: 50%;
}

.nettspend-cutout {
  position: absolute;
  left: -812%;
  top: -56%;
  width: 1027%;
  height: auto;
}

.pradabagshawty {
  left: 32%;
  top: 31%;
  width: 10%;
  height: 38%;
}

.pradabagshawty-cutout {
  position: absolute;
  left: -340%;
  top: -85%;
  width: 1045%;
  height: auto;
}

/* Clickable areas over the painted "View Archive" signs above each
   artist. Rectangles measured off homepage.png (1672x941); a soft blue
   glow marks the sign on hover. */
.va-zone {
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 5;
  border-radius: 8px;
  /* All seven signs share one timeline: they start together at load, and
     the hover rule below overrides the glow WITHOUT stopping the
     animation, so nothing ever drifts out of sync */
  animation: vaGlowBreathe 2.4s ease-in-out infinite;
}

/* Tight ring hugging the sign (spread-based) with a short halo. Values
   hand-tuned via the glow tuner on 2026-07-05 and baked in. Both
   keyframes list the same shadow layers in the same order so CSS can
   interpolate smoothly (mismatched lists snap instead of easing). */
@keyframes vaGlowBreathe {
  0%, 100% {
    box-shadow:
      0 0 0 1.25px rgba(156, 208, 255, 0.51),
      0 0 4.28px 0.95px rgba(55, 160, 255, 0.44),
      0 0 7.92px rgba(55, 160, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 2.59px rgba(204, 232, 255, 0.99),
      0 0 8.12px 2.01px rgba(55, 160, 255, 0.88),
      0 0 13.68px rgba(55, 160, 255, 0.46);
  }
}

/* Hovering holds the steady strong ring; !important beats the running
   animation's values so the shared clock keeps ticking underneath */
.va-zone:hover {
  box-shadow:
    0 0 0 3px rgba(220, 240, 255, 1),
    0 0 9px 2px rgba(55, 160, 255, 0.95),
    0 0 14px rgba(55, 160, 255, 0.55) !important;
}

.va-che { left: 29.61%; top: 15.09%; width: 5.44%; height: 5.21%; }
.va-pradabagshawty { left: 36.30%; top: 19.45%; width: 7.18%; height: 4.78%; }
.va-osamason { left: 44.32%; top: 29.12%; width: 6.40%; height: 5.10%; }
.va-lucki { left: 52.57%; top: 26.04%; width: 5.80%; height: 4.78%; }
.va-protect { left: 60.94%; top: 25.72%; width: 5.98%; height: 4.78%; }
.va-tezzus { left: 70.16%; top: 21.36%; width: 5.68%; height: 4.57%; }
.va-nettspend { left: 79.37%; top: 22.00%; width: 6.16%; height: 4.57%; }

.ticket-zone {
  position: absolute;
  right: 2%;
  top: 2%;
  width: 11%;
  height: 7%;
  display: block;
  z-index: 9999;
  cursor: pointer;
}

.ticket-hover-shape {
  position: absolute;
  inset: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transition: opacity 0.1s steps(1, end);
}

.ticket-hover-shape path {
  fill: none;
  stroke: #555555;
  stroke-width: 6;
  stroke-linejoin: miter;
  stroke-linecap: square;
  shape-rendering: crispEdges;
}

.ticket-zone:hover .ticket-hover-shape {
  opacity: 1;
}

.instagram-pfp-zone {
  position: absolute;
  left: 1.75%;
  top: 2.3%;
  width: 2.8%;
  aspect-ratio: 1 / 1;
  z-index: 9999;
  display: block;
  cursor: pointer;
}

.instagram-pfp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  border-radius: 4px;
  border: 2px solid #3a3a3a;

  image-rendering: auto;
}

.instagram-pfp-zone:hover .instagram-pfp {
  border-color: #777777;
  box-shadow:
    2px 0 0 #555555,
    -2px 0 0 #555555,
    0 2px 0 #555555,
    0 -2px 0 #555555;
}

.social-name-zone {
  position: absolute;
  left: 4.7%;
  top: 1.6%;
  width: 15%;
  height: 5%;
  display: block;
  z-index: 9999;
  cursor: pointer;

  color: transparent;
  text-indent: -9999px;
}

.home-title-zone {
  position: absolute;
  left: 32.5%;
  top: 1%;
  width: 36%;
  height: 7%;
  z-index: 9998;
  display: block;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.scrolling-title {
  width: 100%;
  height: 100%;
  background: #050505;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

.scrolling-title-track {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  animation: titleScroll 10s linear infinite;
}

.scrolling-title-track span {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(12px, 1.8vw, 30px);
  font-weight: 900;
  letter-spacing: 2px;
  color: #004cff;
  text-shadow:
    2px 0 0 #002a8f,
    0 2px 0 #002a8f;
  line-height: 1;
}

@keyframes titleScroll {
  from {
    transform: translateX(0);
  }

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

.plane-symbol {
  font-size: 10em;
  display: inline-block;
  transform: translateY(-2px);
}

/* Blank white canvas under the archive header */
.archive-canvas {
  position: relative;
  width: 100%;
  min-height: calc(100vh - (100vw * 120 / 1672));
  margin-top: calc(100vw * 120 / 1672);
  background: white;
  z-index: 1;
}
/* ---- Live departures board (homepage only) --------------------------- */
/* Covers the baked-in board text in homepage.png and rebuilds it as live
   DOM text. Positioned as % of the terminal scene so it tracks the art. */
.departures-board {
  position: absolute;
  /* Bounding box of the painted screen quad; departures-board.js warps this
     rectangle onto the exact quad corners with a matrix3d homography so the
     live text sits in the same perspective as the artwork. */
  left: 3.947%;
  top: 9.979%;
  width: 24.402%;
  height: 24.453%;
  transform-origin: 0 0;
  background: #020708;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 0.8% 1%;
  font-family: "Consolas", "Courier New", monospace;
  overflow: hidden;
}

/* Soft CRT-style vignette so the panel reads as a lit screen in the scene */
.departures-board::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.db-title {
  color: #cfd6d2;
  font-size: min(1.28cqw, 24px);
  letter-spacing: 0.14em;
  margin-bottom: 2.5%;
}

.db-plane {
  color: #e8a33d;
}

.db-head,
.db-row {
  display: grid;
  grid-template-columns: 12% 38% 18% 8% 20%;
  align-items: center;
  column-gap: 1%;
}

.db-head {
  color: #8b948f;
  font-size: min(0.72cqw, 14px);
  letter-spacing: 0.04em;
  margin-bottom: 2%;
}

.db-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.db-row {
  color: #e8a33d;
  font-size: min(0.9cqw, 17px);
  letter-spacing: 0;
  white-space: nowrap;
}

.db-row .st {
  font-size: min(0.78cqw, 15px);
  letter-spacing: 0;
}

.st-ontime { color: #e8a33d; }

.st-boarding {
  color: #3ec24a;
  animation: dbBlink 1.1s steps(1, end) infinite;
}

.st-final {
  color: #e04b3a;
  animation: dbBlink 0.55s steps(1, end) infinite;
}

.st-departed { color: #5c645f; }

@keyframes dbBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* Glow matching the artwork's soft phosphor bloom; text-shadow without an
   explicit color uses each cell's own color, so statuses glow their hue */
.db-row span {
  text-shadow: 0 0 0.32cqw;
}

.db-title {
  text-shadow: 0 0 0.3cqw rgba(207, 214, 210, 0.4);
}

/* ---- Drifting sky clouds (homepage only) ------------------------------ */
/* Layer sandwich over the window band of homepage.png: clean-sky backdrop,
   drifting cloud sprites (cut from the artwork), then a foreground cutout
   (mullions, GATE sign, tower, buildings) the clouds pass behind. */
.sky-live {
  position: absolute;
  left: 35.526%;
  top: 8.289%;
  width: 57.775%;
  height: 12.434%;
  overflow: hidden;
  pointer-events: none;
}

.sky-backdrop,
.sky-foreground {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sky-clouds {
  position: absolute;
  inset: 0;
}

.sky-clouds img {
  position: absolute;
  height: auto;
  animation: skyShuffle 2.4s step-end infinite;
}

/* Two hard frames, no in-between: nudge right, snap back — same stepped
   pixel-animation language as the rest of the site */
@keyframes skyShuffle {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(0.35cqw); }
}

/* ---- Boarding-pass footer (homepage only), pixel-art styled ------------ */
.boarding-footer {
  position: relative;
  height: var(--footer-h);
  background: url("images/ticket-paper.png") repeat, #6f4e34;
  background-size: 160px 160px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  color: #241708;
  font-family: "Press Start 2P", monospace;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 40px);
  padding: 0 clamp(12px, 2.5vw, 44px);
  overflow: hidden;
  /* hard pixel bevel: light lip on top, shadow at the bottom */
  box-shadow:
    inset 0 3px 0 rgba(255, 235, 200, 0.14),
    inset 0 -4px 0 rgba(0, 0, 0, 0.35);
}

/* Torn perforation along the top edge — square punched notches that shimmy
   side to side in two hard frames, like the stub is being tugged */
.bf-perforation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background-image: linear-gradient(90deg, #050505 0 10px, transparent 10px 22px);
  background-size: 22px 7px;
  background-repeat: repeat-x;
  /* one full 22px pattern period per cycle, in 4 hard jumps — crawls
     forward forever and wraps seamlessly */
  animation: bfPerfCrawl 2.4s steps(4, end) infinite;
}

@keyframes bfPerfCrawl {
  from { background-position-x: 0; }
  to { background-position-x: 22px; }
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

.bf-label {
  font-size: clamp(6px, 0.5vw, 8px);
  letter-spacing: 0.1em;
  color: rgba(36, 23, 8, 0.66);
}

.bf-value {
  font-size: clamp(8px, 0.8vw, 13px);
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 rgba(255, 235, 200, 0.28);
}

.bf-plane {
  color: #7a1f14;
}

.bf-link {
  text-decoration: none;
  color: inherit;
}

.bf-link:hover .bf-value {
  text-decoration: underline;
}

.bf-barcode {
  margin-left: auto;
  align-self: center;
  width: clamp(60px, 7vw, 120px);
  height: 62%;
  background: repeating-linear-gradient(
    90deg,
    #241708 0 2px, transparent 2px 4px,
    #241708 4px 5px, transparent 5px 9px,
    #241708 9px 12px, transparent 12px 14px,
    #241708 14px 15px, transparent 15px 19px
  );
  opacity: 0.85;
}

.bf-copy {
  font-size: clamp(7px, 0.65vw, 11px);
  letter-spacing: 0.1em;
  color: rgba(36, 23, 8, 0.62);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Tighten what shows on narrow windows */
@media (max-width: 900px) {
  .bf-field-dest, .bf-copy { display: none; }
}

/* ---- Boarding-pass inspect (homepage only) ----------------------------- */
/* Invisible click zone over the painted ticket on the table */
.ticket-inspect-zone {
  position: absolute;
  left: 64.6%;
  top: 78.1%;
  width: 21.5%;
  height: 16.5%;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Exact-silhouette glow: a cutout of the painted ticket (with alpha)
   overlaid in place; drop-shadow hugs its deckled edges precisely.
   A faint warm glow is always on so visitors know it's clickable,
   and it intensifies on hover. */
.ticket-hover-glow {
  position: absolute;
  left: 63.397%;
  top: 75.983%;
  width: 23.923%;
  height: auto;
  opacity: 1;
  pointer-events: none;
  animation: ticketGlowBreathe 3.2s ease-in-out infinite;
}

/* Both keyframes must list the same filter functions in the same order —
   mismatched lists can't interpolate and the animation snaps instead of
   easing (same rule as the boombox breathe) */
@keyframes ticketGlowBreathe {
  0%, 100% {
    filter:
      drop-shadow(0 0 1.5px rgba(255, 224, 160, 0.5))
      drop-shadow(0 0 7px rgba(232, 163, 61, 0.38))
      drop-shadow(0 0 12px rgba(232, 163, 61, 0.16));
  }
  50% {
    filter:
      drop-shadow(0 0 1.5px rgba(255, 224, 160, 0.8))
      drop-shadow(0 0 11px rgba(232, 163, 61, 0.65))
      drop-shadow(0 0 20px rgba(232, 163, 61, 0.42));
  }
}

.ticket-inspect-zone:hover + .ticket-hover-glow {
  opacity: 1;
  /* hold a steady strong glow while hovered — pause the breathing */
  animation: none;
  filter:
    drop-shadow(0 0 2px rgba(255, 224, 160, 0.9))
    drop-shadow(0 0 9px rgba(232, 163, 61, 0.75))
    drop-shadow(0 0 18px rgba(232, 163, 61, 0.45));
}

/* Silhouette-shaped hit areas for the artist zones (same pattern as
   .osamason-hit): the zone ignores the pointer and an inner hit
   element carries a clip-path traced from the cutout's alpha, so
   hover/click only trigger on the figure itself. */

.artist-zone.che {
  pointer-events: none;
}

.che-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(51.1% 1.7%, 24.1% 6.6%, 18.0% 11.5%, 15.3% 16.4%, 10.7% 21.2%, 5.0% 26.1%, 2.5% 31.0%, 1.6% 35.9%, 8.9% 40.8%, 9.2% 45.6%, 12.6% 50.5%, 15.0% 55.4%, 17.7% 60.3%, 15.9% 65.2%, 12.3% 70.0%, 11.0% 74.9%, 7.4% 79.8%, 5.3% 84.7%, 7.7% 89.6%, 7.4% 94.5%, 4.1% 99.3%, 2.2% 100.0%, 12.6% 100.0%, 25.9% 100.0%, 32.3% 100.0%, 43.5% 100.0%, 91.2% 100.0%, 97.3% 99.3%, 81.2% 94.5%, 76.0% 89.6%, 79.4% 84.7%, 79.7% 79.8%, 78.8% 74.9%, 80.0% 70.0%, 81.8% 65.2%, 83.0% 60.3%, 84.2% 55.4%, 89.1% 50.5%, 87.9% 45.6%, 88.5% 40.8%, 85.7% 35.9%, 85.4% 31.0%, 85.4% 26.1%, 82.7% 21.2%, 81.8% 16.4%, 80.9% 11.5%, 77.2% 6.6%, 56.9% 1.7%);
}

.artist-zone.lucki {
  pointer-events: none;
}

.lucki-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(23.8% 0.0%, 10.4% 0.0%, 7.4% 0.7%, 5.9% 5.7%, 0.0% 10.7%, 0.0% 15.8%, 0.0% 20.8%, 0.0% 25.8%, 0.0% 30.9%, 0.0% 35.9%, 0.0% 40.9%, 0.0% 45.9%, 0.0% 51.0%, 0.0% 56.0%, 0.0% 61.0%, 0.0% 66.0%, 0.0% 71.1%, 0.0% 76.1%, 0.0% 78.3%, 2.4% 78.3%, 11.4% 76.1%, 11.4% 71.1%, 12.9% 66.0%, 14.4% 61.0%, 15.4% 56.0%, 18.8% 51.0%, 39.2% 45.9%, 40.7% 40.9%, 41.2% 35.9%, 59.1% 30.9%, 60.1% 25.8%, 59.1% 20.8%, 58.6% 15.8%, 59.6% 10.7%, 53.2% 5.7%, 49.7% 0.7%, 44.7% 0.0%, 31.3% 0.0%);
}

.artist-zone.protect {
  pointer-events: none;
}

.protect-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(29.6% 0.0%, 0.0% 3.7%, 0.0% 8.2%, 0.0% 12.7%, 0.0% 17.2%, 0.0% 21.7%, 0.0% 26.2%, 0.0% 30.7%, 0.0% 35.2%, 7.5% 39.7%, 0.0% 44.2%, 0.0% 48.7%, 0.0% 53.2%, 0.0% 57.8%, 0.0% 62.3%, 0.0% 66.8%, 0.0% 71.3%, 0.0% 75.8%, 0.0% 80.3%, 0.0% 84.8%, 0.0% 88.8%, 8.6% 88.8%, 20.4% 84.8%, 23.7% 80.3%, 21.5% 75.8%, 23.7% 71.3%, 27.4% 66.8%, 37.1% 62.3%, 45.2% 57.8%, 50.0% 53.2%, 51.6% 48.7%, 62.9% 44.2%, 69.4% 39.7%, 67.8% 35.2%, 61.9% 30.7%, 56.5% 26.2%, 55.4% 21.7%, 57.6% 17.2%, 60.8% 12.7%, 62.9% 8.2%, 59.2% 3.7%, 39.8% 0.0%);
}

.artist-zone.tezzus {
  pointer-events: none;
}

.tezzus-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(11.3% 0.0%, 0.0% 1.0%, 0.0% 5.6%, 0.0% 10.1%, 0.0% 14.6%, 0.0% 19.1%, 0.0% 23.7%, 0.0% 28.2%, 0.0% 32.7%, 0.0% 37.2%, 0.0% 41.7%, 0.0% 46.3%, 0.0% 50.8%, 0.0% 55.3%, 0.0% 59.8%, 0.0% 64.4%, 0.0% 68.9%, 0.0% 73.4%, 0.0% 77.9%, 0.0% 82.4%, 0.0% 87.0%, 0.0% 91.5%, 30.4% 96.0%, 36.4% 100.0%, 52.0% 100.0%, 59.1% 96.0%, 59.1% 91.5%, 59.1% 87.0%, 59.7% 82.4%, 59.7% 77.9%, 55.6% 73.4%, 54.4% 68.9%, 52.0% 64.4%, 49.6% 59.8%, 48.4% 55.3%, 47.8% 50.8%, 56.7% 46.3%, 64.5% 41.7%, 69.3% 37.2%, 71.1% 32.7%, 69.3% 28.2%, 66.9% 23.7%, 63.3% 19.1%, 54.4% 14.6%, 49.6% 10.1%, 46.0% 5.6%, 41.8% 1.0%, 29.2% 0.0%);
}

.artist-zone.nettspend {
  pointer-events: none;
}

.nettspend-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(5.5% 0.0%, 0.0% 2.5%, 0.0% 6.6%, 0.0% 10.8%, 0.0% 14.9%, 0.0% 19.1%, 0.0% 23.2%, 0.0% 27.4%, 0.0% 31.5%, 0.0% 35.7%, 0.0% 39.8%, 0.0% 44.0%, 0.0% 48.1%, 0.0% 52.3%, 0.0% 56.4%, 0.0% 60.6%, 0.0% 64.7%, 0.0% 68.9%, 0.0% 73.0%, 0.0% 77.1%, 0.0% 81.3%, 0.0% 85.4%, 19.1% 89.6%, 24.0% 91.8%, 33.2% 91.8%, 47.3% 89.6%, 55.3% 85.4%, 54.1% 81.3%, 55.3% 77.1%, 54.1% 73.0%, 52.2% 68.9%, 52.2% 64.7%, 49.2% 60.6%, 47.3% 56.4%, 47.3% 52.3%, 47.9% 48.1%, 48.5% 44.0%, 52.8% 39.8%, 57.1% 35.7%, 60.2% 31.5%, 60.2% 27.4%, 62.7% 23.2%, 57.8% 19.1%, 52.2% 14.9%, 44.2% 10.8%, 45.5% 6.6%, 38.1% 2.5%, 22.1% 0.0%);
}

.artist-zone.pradabagshawty {
  pointer-events: none;
}

.pradabagshawty-hit {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: auto;
  clip-path: polygon(66.2% 0.0%, 56.2% 0.0%, 53.8% 0.0%, 48.1% 0.0%, 40.6% 3.0%, 38.8% 8.2%, 39.4% 13.5%, 43.8% 18.7%, 55.6% 24.0%, 61.2% 29.3%, 73.8% 34.5%, 75.0% 39.8%, 74.4% 45.0%, 77.5% 50.3%, 86.2% 55.6%, 94.4% 56.7%, 100.0% 56.7%, 100.0% 55.6%, 100.0% 50.3%, 100.0% 45.0%, 100.0% 39.8%, 100.0% 34.5%, 100.0% 29.3%, 100.0% 24.0%, 100.0% 18.7%, 100.0% 13.5%, 100.0% 8.2%, 100.0% 3.0%, 98.1% 0.0%, 98.1% 0.0%, 96.9% 0.0%, 88.1% 0.0%);
}
