:root {
  --black: #05020a;
  --white: #fff9ff;
  --pink: #ff18f4;
  --cyan: #13f4ff;
  --lime: #dcff39;
  --muted: rgba(255, 249, 255, 0.74);
  --edge: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 24, 244, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(19, 244, 255, 0.18), transparent 22rem),
    linear-gradient(135deg, #05020a 0%, #17051e 52%, #03040b 100%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("cartel-rock-nights-2026.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  filter: saturate(1.25) contrast(1.25) blur(2px);
  transform: scale(1.03);
}

a {
  color: inherit;
}

.noise,
.scanline {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.noise {
  opacity: 0.18;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 49% 50%, transparent 51% 100%),
    repeating-radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.scanline {
  background: repeating-linear-gradient(to bottom, transparent 0 7px, rgba(255, 255, 255, 0.055) 8px);
  opacity: 0.35;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(5, 2, 10, 0.96), rgba(5, 2, 10, 0.42), rgba(5, 2, 10, 0));
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(19, 244, 255, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(0.45rem, 1.5vw, 1.15rem);
  min-width: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.12rem;
  color: var(--white);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: -1px 1px 0 var(--pink), 0 0 14px rgba(19, 244, 255, 0.42);
  transition: color 160ms ease, text-shadow 160ms ease, transform 160ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover {
  color: var(--lime);
  text-shadow: -1px 1px 0 var(--pink), 0 0 18px rgba(220, 255, 57, 0.58);
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 24, 244, 0.22);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 2.6vw, 0.92rem);
  letter-spacing: 0;
  box-shadow: 0 0 22px rgba(255, 24, 244, 0.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem clamp(1rem, 5vw, 5rem) 4rem;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 2, 10, 0.96) 0%, rgba(5, 2, 10, 0.72) 46%, rgba(5, 2, 10, 0.26) 100%),
    url("cartel-rock-nights-2026.jpg") center / cover;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 42%, rgba(19, 244, 255, 0.2) 43% 45%, transparent 46% 100%);
  animation: lightSweep 4.8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.66fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  text-shadow: 0 0 14px rgba(19, 244, 255, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  width: min-content;
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: clamp(5.4rem, 14vw, 13.5rem);
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    -5px 5px 0 var(--cyan),
    0 0 28px rgba(255, 24, 244, 0.82),
    0 0 72px rgba(255, 24, 244, 0.4);
  animation: pulseTitle 2.8s ease-in-out infinite;
}

h1::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  transform: translate(7px, -6px);
  opacity: 0.65;
  animation: glitch 2.4s steps(2, end) infinite;
}

.lead {
  max-width: 670px;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 2.3vw, 1.5rem);
  line-height: 1.35;
  font-weight: 800;
}

.price-strip {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-bottom: 1.3rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--edge);
  background: rgba(5, 2, 10, 0.68);
  box-shadow: inset 0 0 24px rgba(19, 244, 255, 0.16), 0 0 30px rgba(255, 24, 244, 0.2);
  text-transform: uppercase;
  font-size: clamp(0.82rem, 1.8vw, 1rem);
}

.price-strip strong {
  color: var(--lime);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.8;
  text-shadow: 0 0 18px rgba(220, 255, 57, 0.72);
}

.mega-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(76px, 11vw, 116px);
  width: min(100%, 640px);
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: #120218;
  background: linear-gradient(90deg, var(--lime), #fff75f 42%, var(--pink) 43% 100%);
  border: 4px solid var(--white);
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 6.4vw, 5.2rem);
  line-height: 0.9;
  box-shadow:
    9px 9px 0 var(--cyan),
    0 0 34px rgba(255, 24, 244, 0.65),
    0 0 76px rgba(220, 255, 57, 0.36);
  transform: rotate(-1.2deg);
  transition: transform 180ms ease, filter 180ms ease;
}

.mega-cta span {
  display: block;
  overflow-wrap: anywhere;
}

.mega-cta:hover {
  transform: rotate(1deg) translateY(-4px) scale(1.025);
  filter: saturate(1.3);
}

.microcopy {
  max-width: 610px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.poster-card {
  margin: 0;
  transform: rotate(2.4deg);
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.7));
  animation: floatPoster 5s ease-in-out infinite;
}

.poster-card img {
  display: block;
  width: 100%;
  max-height: min(78svh, 820px);
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 8px rgba(255, 24, 244, 0.16), 0 0 48px rgba(19, 244, 255, 0.26);
}

.video-band,
.lineup,
.buy-panel,
footer {
  position: relative;
  z-index: 2;
}

.video-band {
  width: min(1120px, calc(100% - 2rem));
  margin: 4rem auto 2rem;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--white);
  background: var(--black);
  box-shadow: 0 0 0 9px rgba(255, 24, 244, 0.16), 0 30px 90px rgba(0, 0, 0, 0.56);
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lineup {
  width: min(1180px, calc(100% - 2rem));
  margin: 6rem auto;
}

.lineup-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.lineup h2,
.buy-panel h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: -3px 3px 0 var(--pink), 0 0 26px rgba(19, 244, 255, 0.24);
}

.lineup-head p,
.buy-panel p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.5;
}

.shows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1rem;
}

.show {
  min-width: 0;
  min-height: 280px;
  padding: clamp(0.9rem, 1.4vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 24, 244, 0.22), rgba(19, 244, 255, 0.08)),
    rgba(5, 2, 10, 0.76);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.show:nth-child(even) {
  background:
    linear-gradient(160deg, rgba(19, 244, 255, 0.18), rgba(255, 59, 79, 0.14)),
    rgba(5, 2, 10, 0.76);
}

.show:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 46px rgba(255, 24, 244, 0.24);
}

.show time {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 0.95;
  text-shadow: 0 0 14px rgba(220, 255, 57, 0.62);
}

.show h3 {
  margin-bottom: 0.8rem;
  color: var(--pink);
  max-width: 100%;
  font-size: clamp(1.25rem, 1.68vw, 1.58rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: -1px 1px 0 var(--cyan);
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

.show p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.buy-panel {
  width: min(1120px, calc(100% - 2rem));
  margin: 5rem auto 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(255, 24, 244, 0.24), rgba(220, 255, 57, 0.16)),
    rgba(5, 2, 10, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 70px rgba(255, 24, 244, 0.24);
}

.mega-cta-dark {
  width: 100%;
  min-height: 92px;
  font-size: clamp(1.8rem, 4.8vw, 4rem);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  background: rgba(5, 2, 10, 0.8);
}

footer a {
  color: var(--cyan);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lightSweep {
  0%, 58% {
    transform: translateX(-80%) skewX(-16deg);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(80%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes pulseTitle {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.24);
  }
}

@keyframes glitch {
  0%, 88%, 100% {
    clip-path: inset(0 0 0 0);
    transform: translate(7px, -6px);
  }
  90% {
    clip-path: inset(0 0 64% 0);
    transform: translate(-8px, 3px);
  }
  93% {
    clip-path: inset(58% 0 0 0);
    transform: translate(12px, -2px);
  }
}

@keyframes floatPoster {
  0%, 100% {
    transform: rotate(2.4deg) translateY(0);
  }
  50% {
    transform: rotate(1.1deg) translateY(-14px);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 0.55rem;
  }

  .main-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .buy-panel {
    grid-template-columns: 1fr;
  }

  .poster-card {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .shows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem;
  }

  .brand img {
    width: 118px;
  }

  .main-nav {
    gap: 0.8rem;
  }

  .main-nav a {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .hero {
    padding: 8rem 1rem 3rem;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 2, 10, 0.86) 0%, rgba(5, 2, 10, 0.74) 52%, rgba(5, 2, 10, 0.96) 100%),
      url("cartel-rock-nights-2026.jpg") center top / cover;
  }

  .price-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .shows {
    grid-template-columns: 1fr;
  }

  .show {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
