* { box-sizing: border-box; }

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  font-family: monospace;
  font-size: 18px;
  line-height: 1.4;
  background: #000;
}

/* Full-viewport background: plain black until Vimeo's iframe has loaded,
   then the video fades in. Fixed behind all content. */
.bg-media {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #000;
}

.bg-video-frame {
  position: absolute;
  inset: 0;
}

/* Sized so the video always covers the viewport without squashing —
   same idea as background-size: cover, applied to an embedded 16:9 iframe. */
.bg-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.bg-video-frame iframe.loaded {
  opacity: 1;
}

.bg-scrim {
  position: absolute;
  inset: 0;
  /* Kept light: this darkens the video toward black before the hero title's
     invert blend runs, and a heavier scrim skews that blend result toward
     white in dark scenes. A light scrim still keeps plain (non-blended)
     text elsewhere readable. */
  background: rgba(0, 0, 0, 0.2);
}

.mute-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 5;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
}

.mute-toggle:hover {
  background: #fff;
  color: #000;
}

.mute-toggle .icon {
  width: 22px;
  height: 22px;
  display: none;
}

.mute-toggle.is-muted .icon-muted { display: block; }
.mute-toggle:not(.is-muted) .icon-unmuted { display: block; }

main, footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #fff;
}

a:hover {
  background: #fff;
  color: #000;
}

h1, h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  /* Break out of main's 720px column to span the full viewport width —
     the title should run edge to edge regardless of screen size. */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 20px;
  box-sizing: border-box;
  white-space: nowrap;

  /* Fallback size if JS (js/main.js, fitHeroTitle) doesn't run — JS
     measures the real rendered text and overrides this with an exact
     px value so it always fills the width precisely, on any screen. */
  font-size: clamp(40px, 16vw, 220px);
  line-height: 1;
  margin-top: 0;
  margin-bottom: 20px;
  /* White text + difference blending = an exact color negative of
     whatever's playing behind it in the background video. */
  color: #fff;
  mix-blend-mode: difference;
}

.tagline {
  font-size: 20px;
  margin: 0;
}

.quote {
  text-align: center;
}

.quote blockquote {
  margin: 0;
  max-width: 560px;
  margin: 0 auto;
}

.quote p {
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

section {
  padding: 30px 0;
}

h2 {
  font-size: 28px;
}

.shows-list,
.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shows-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.shows-list li:first-child {
  padding-top: 0;
}

.shows-list li:last-child {
  border-bottom: none;
}

.show-date {
  font-weight: bold;
  min-width: 100px;
}

.show-venue { flex: 1 1 200px; }

.show-link {
  margin-left: auto;
}

.shows-status {
  padding: 10px 0;
}

.links-list li {
  padding: 6px 0;
}

.links-list a {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

footer {
  padding: 20px;
  font-size: 14px;
}

/* Signup form (signup.html) */
.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.field input {
  width: 100%;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  font-family: monospace;
  font-size: 18px;
  padding: 12px;
}

.field input:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.form-error {
  color: #ff6b6b;
  font-size: 14px;
  margin: -8px 0 20px;
}

.field-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.field-checkbox input {
  width: 22px;
  height: 22px;
  accent-color: #fff;
  cursor: pointer;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  font-family: monospace;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #fff;
  color: #000;
}

.privacy-note {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.signup-success {
  padding: 20px 0;
}

.signup-success .btn-submit {
  margin-top: 12px;
  text-decoration: none;
}

.redirect-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
