/* Shows page: animated live-performance background with readable Windows content. */
body.inner.page-shows {
  background-color: #07101a;
}

body.inner.page-shows::before {
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3,7,12,.12), rgba(1,4,8,.42)),
    url("https://media3.giphy.com/media/81si2Epp3qFmIrz9mP/giphy.gif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  clip-path: none;
  filter: saturate(1.04) contrast(1.03);
}

body.inner.page-shows::after {
  inset: 0;
  height: auto;
  clip-path: none;
  opacity: 1;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 24%, transparent 76%, rgba(0,0,0,.22));
}

body.page-shows .shows-board {
  width: min(920px, 100%);
  margin: 24px auto 0;
}

body.page-shows .show-window {
  overflow: hidden;
  padding: 0;
  border-radius: 0;
}

body.page-shows .show-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(90deg, #000080, #1084d0);
  font-family: var(--chicago);
  font-weight: 900;
  text-shadow: 1px 1px 0 #000;
}

body.page-shows .show-titlebar span:last-child {
  font-family: var(--dot);
  font-size: 11px;
  font-weight: 400;
}

body.page-shows .show-content {
  padding: clamp(24px, 5vw, 48px);
}

body.page-shows .show-content h2 {
  margin: 0 0 14px;
  font-family: var(--chicago);
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -.055em;
}

body.page-shows .show-content p {
  max-width: 680px;
  margin: 0 0 22px;
  line-height: 1.55;
}

body.page-shows .show-content .text-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
}

@media (max-width: 800px) {
  body.inner.page-shows::before {
    background-attachment: scroll;
  }
}