:root {
  color-scheme: dark;
  --bg: #030303;
  --ink: #f7f7f2;
  --muted: rgba(247, 247, 242, 0.62);
  --line: rgba(247, 247, 242, 0.18);
  --panel: rgba(8, 8, 8, 0.78);
  --acid: #d7ff36;
  --cyan: #60f7ff;
  --red: #ff3b57;
  --shadow: rgba(0, 0, 0, 0.7);
  --header: 82px;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 56px 56px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px var(--shadow);
}

.brand,
.navlinks a,
.nav-ticket,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.brand {
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
  padding: 0 12px;
  font-size: 1.02rem;
  text-overflow: ellipsis;
}

.navlinks {
  display: flex;
  gap: 6px;
}

.navlinks a {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--muted);
}

.navlinks a.is-active,
.navlinks a:hover {
  color: var(--ink);
  border-color: rgba(96, 247, 255, 0.45);
  background: rgba(96, 247, 255, 0.1);
}

.nav-ticket,
.button-primary {
  border: 2px solid var(--acid);
  background: var(--acid);
  color: #050505;
  box-shadow: 0 0 28px rgba(215, 255, 54, 0.28);
}

.nav-ticket {
  min-height: 46px;
  padding: 0 18px;
}

.button {
  min-height: 60px;
  min-width: 190px;
  padding: 0 22px;
  border: 2px solid var(--line);
  font-size: 1.02rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(96, 247, 255, 0.72);
  background: rgba(96, 247, 255, 0.12);
}

.button-accent {
  border-color: rgba(215, 255, 54, 0.72);
  background: rgba(215, 255, 54, 0.13);
}

.brand svg,
.navlinks svg,
.nav-ticket svg,
.button svg,
.hero-hud svg,
.lineup-stack svg,
.venue-card svg,
.facts-grid svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.snap-shell {
  position: relative;
  z-index: 1;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

.panel {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  padding: calc(var(--header) + 22px) 32px 28px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: 28px;
  align-items: end;
  background: #000;
}

.hero-poster,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster {
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.42;
  filter: grayscale(1) contrast(112%);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 42%, rgba(0, 0, 0, 0.78));
}

.hero-copy,
.hero-hud,
.section-head,
.lineup-stack,
.page-actions,
.venue-layout,
.site-footer {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-head span,
.hero-hud span,
.venue-card span,
.facts-grid span,
.site-footer {
  color: var(--muted);
  font-family: "Courier New", ui-monospace, monospace;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 0.95rem;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  font-weight: 950;
  line-height: 0.82;
  text-shadow: 6px 0 0 rgba(255, 255, 255, 0.15), -3px 0 0 rgba(96, 247, 255, 0.22);
}

h2 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 950;
  line-height: 0.86;
}

.hero-date {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin-top: 18px;
  color: var(--acid);
  font-weight: 950;
}

.hero-date span {
  font-size: clamp(2.3rem, 7vw, 5rem);
}

.hero-date strong {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-hud {
  display: grid;
  gap: 10px;
}

.hero-hud div,
.venue-card,
.facts-grid div {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.hero-hud div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
}

.hero-hud svg,
.venue-card svg,
.facts-grid svg {
  color: var(--acid);
}

.hero-hud strong,
.venue-card strong,
.facts-grid strong {
  grid-column: 2;
  font-size: 1.25rem;
}

.lineup-panel,
.venue-panel {
  display: grid;
  background:
    radial-gradient(circle at 82% 18%, rgba(96, 247, 255, 0.12), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(215, 255, 54, 0.09), transparent 34%),
    #030303;
}

.lineup-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-head span {
  color: var(--acid);
  font-size: 0.95rem;
  font-weight: 800;
}

.lineup-stack {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
}

.lineup-stack span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.28rem, 3.3vw, 2.55rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.lineup-stack .headliner {
  color: var(--acid);
}

.lineup-stack span:nth-child(4n),
.lineup-stack span:nth-child(4n + 3) {
  color: var(--cyan);
}

.lineup-stack span.secret-guests {
  color: var(--red);
  border-bottom-color: rgba(255, 59, 87, 0.75);
}

.lineup-panel .page-actions,
.venue-panel .page-actions {
  margin-top: 0;
}

.venue-panel {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 18px;
}

.venue-layout {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.venue-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-content: center;
  min-height: 220px;
  padding: 24px;
}

.venue-card strong {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.05;
}

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

.facts-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
  }

  .navlinks {
    display: none;
  }

  .nav-ticket {
    width: 52px;
    min-height: 50px;
    padding: 0;
  }

  .nav-ticket span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .panel {
    padding: calc(var(--header) + 16px) 18px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-poster {
    object-position: center 24%;
    opacity: 0.46;
  }

  .hero-copy {
    align-self: end;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-date {
    margin-top: 12px;
  }

  .hero-date span {
    font-size: 2.4rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-width: 0;
    min-height: 54px;
    padding: 0 12px;
    font-size: 0.95rem;
  }

  .hero-hud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-hud div {
    min-height: 66px;
    padding: 9px;
  }

  .hero-hud svg {
    display: none;
  }

  .hero-hud span {
    font-size: 0.64rem;
  }

  .hero-hud strong {
    grid-column: 1;
    font-size: 0.88rem;
  }

  .lineup-panel {
    gap: 12px;
  }

  .section-head {
    align-items: start;
  }

  h2 {
    font-size: 2.35rem;
  }

  .lineup-stack {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lineup-stack span {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    min-height: 31px;
    font-size: clamp(1.05rem, 5.7vw, 1.42rem);
  }

  .lineup-stack svg {
    width: 18px;
    height: 18px;
  }

  .page-actions {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 10px;
  }

  .venue-panel {
    gap: 12px;
  }

  .venue-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .venue-card {
    min-height: 112px;
    padding: 16px;
  }

  .venue-card strong {
    font-size: 1.35rem;
  }

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

  .facts-grid div {
    min-height: 78px;
    padding: 10px;
  }

  .facts-grid svg {
    display: none;
  }

  .facts-grid span {
    font-size: 0.66rem;
  }

  .facts-grid strong {
    grid-column: 1;
    font-size: 0.98rem;
  }

  .venue-actions {
    grid-template-columns: 1fr 1fr;
  }

  .venue-actions .button-primary {
    grid-column: 1 / -1;
  }

  .site-footer {
    display: grid;
    gap: 5px;
    padding-top: 10px;
    font-size: 0.64rem;
    line-height: 1.25;
  }
}

@media (max-width: 380px), (max-height: 720px) {
  .brand {
    font-size: 0.82rem;
  }

  .panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    min-height: 48px;
    font-size: 0.86rem;
  }

  .lineup-stack span {
    min-height: 27px;
    font-size: 1rem;
  }

  .hero-hud div {
    min-height: 58px;
  }

  .facts-grid div {
    min-height: 68px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}
