:root {
  --bg: #09090b;
  --ink: #f6f4ef;
  --muted: rgba(246, 244, 239, 0.72);
  --dim: rgba(246, 244, 239, 0.52);
  --line: rgba(246, 244, 239, 0.14);
  --panel: rgba(16, 17, 20, 0.78);
  --panel-solid: #111217;
  --red: #e02b2b;
  --amber: #f0b44d;
  --cyan: #69d7e8;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(224, 43, 43, 0.08), transparent 26%, rgba(105, 215, 232, 0.07) 74%, transparent),
    #09090b;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255, 255, 255, 0.08) 7px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.04) 39px);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1.4vw, 18px);
  padding: 10px clamp(14px, 2.4vw, 28px);
  background: rgba(9, 9, 11, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(7px, 1vw, 14px);
  margin-left: 0;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  min-height: 30px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(10px, 0.75vw, 12px);
  font-weight: 900;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-crowd.png");
  background-size: cover;
  background-position: 54% 43%;
  transform: scale(1.02);
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.18) 0%, rgba(9, 9, 11, 0.08) 38%, rgba(9, 9, 11, 0.04) 70%, rgba(9, 9, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 9, 11, 0.62) 0%, rgba(9, 9, 11, 0.28) 26%, rgba(9, 9, 11, 0.02) 58%),
    radial-gradient(circle at 76% 28%, rgba(240, 180, 77, 0.14), transparent 34%);
}

.floating-logo {
  position: absolute;
  top: clamp(70px, 6.1vw, 102px);
  left: clamp(72px, 8.5vw, 160px);
  z-index: 2;
  width: clamp(150px, 15.5vw, 268px);
  height: auto;
  transform: translateX(-50%) rotate(-20deg);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.62));
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
}

.button,
.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 900;
}

.button:hover,
.card-actions a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.button-primary {
  border-color: transparent;
  background: var(--red);
}

.button-primary:hover {
  background: #f03a3a;
}

.button-ghost {
  color: var(--cyan);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0e12;
}

.ticker span {
  flex: 1 1 220px;
  min-width: max-content;
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0;
}

.section-tight {
  padding-top: 56px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}

.section-heading p:last-child,
.media-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

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

.show-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.show-card.featured {
  grid-column: 1 / -1;
  min-height: 250px;
  background:
    linear-gradient(110deg, rgba(224, 43, 43, 0.2), rgba(16, 17, 20, 0.86) 46%),
    var(--panel-solid);
}

.show-card time {
  display: grid;
  place-items: center;
  align-content: center;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
}

.show-card time span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.show-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-actions a {
  min-height: 38px;
  padding: 10px 12px;
}

.media-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.media-copy,
.video-frame,
.booking-grid article,
.merch-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-copy {
  padding: clamp(20px, 3vw, 34px);
}

.media-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1;
}

.media-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.media-stats span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--dim);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.media-stats strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0;
  min-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #0d0e12;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(224, 43, 43, 0.16), transparent 42%, rgba(105, 215, 232, 0.1));
  pointer-events: none;
}

.video-frame img,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.booking-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.booking-grid article {
  min-height: 250px;
  padding: 22px;
}

.booking-grid p,
.booking-grid li {
  color: var(--muted);
  line-height: 1.5;
}

.booking-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.booking-grid .button {
  margin-top: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.booking-actions .button {
  margin-top: 0;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.merch-card {
  display: grid;
  grid-template-rows: 230px auto;
  min-height: 340px;
  overflow: hidden;
}

.merch-card img,
.sticker-art {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #0d0e12;
}

.merch-card div:last-child {
  padding: 18px;
}

.merch-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.sticker-art {
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--ink);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .nav a {
    padding: 9px 9px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 9, 11, 0.52) 0%, rgba(9, 9, 11, 0.12) 42%, rgba(9, 9, 11, 0) 70%),
      linear-gradient(90deg, rgba(9, 9, 11, 0.22), rgba(9, 9, 11, 0.04));
  }

  .section-heading,
  .show-grid,
  .media-section,
  .booking-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .floating-logo {
    top: 126px;
    left: 76px;
    width: 148px;
  }

  .show-card,
  .show-card.featured {
    grid-column: auto;
    grid-template-columns: 68px 1fr;
    min-height: 0;
    padding: 16px;
  }

  .show-card time {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .media-stats {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .card-actions {
    display: grid;
    width: 100%;
  }

  .card-actions a {
    width: 100%;
  }

  .ticker {
    display: none;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }
}
