:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f5f5f1;
  --muted: rgba(245, 245, 241, 0.66);
  --line: rgba(245, 245, 241, 0.16);
  --accent: #b8f6ff;
  --accent-2: #ff7a2f;
  --radius: 28px;
  --container: min(1180px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(75, 214, 255, 0.16), transparent 34vw),
    radial-gradient(circle at 88% 28%, rgba(255, 122, 47, 0.14), transparent 28vw),
    var(--bg);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open,
body.gallery-open,
body.show-modal-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  left: -180px;
  top: -180px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 246, 255, 0.13), transparent 62%);
  pointer-events: none;
  transform: translate3d(var(--x, 50vw), var(--y, 50vh), 0);
  transition: opacity 0.25s ease;
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: var(--progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 14px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-left: 10px;
}

.logo img {
  width: 176px;
  height: auto;
  max-height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: var(--panel-soft);
}

.nav a.nav-ticket {
  background: #76b7ff;
  color: #fff;
}

.nav a.nav-ticket:hover,
.nav a.nav-ticket.is-active {
  background: #8fc5ff;
  color: #fff;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--bg);
  border-radius: 99px;
  transition: transform 0.25s ease;
}

.menu-open .burger span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .burger span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding: 106px 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-top: 128px;
}

.hero-copy,
.hero-media {
  grid-column: 1;
  grid-row: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(24px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.94;
}

h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 86px);
  line-height: 0.92;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  border-color: transparent;
  background: #76b7ff;
  color: #fff;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-large {
  min-width: 220px;
}

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 760px);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: calc(var(--radius) + 18px);
  border: 1px solid rgba(184, 246, 255, 0.24);
  transform: rotate(-2deg);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.42) 48%, rgba(5, 5, 5, 0.08)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.46));
  pointer-events: none;
}

.hero-media picture {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.hero-media img {
  width: 100%;
  height: min(78vh, 760px);
  min-height: 560px;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  animation: photoFloat 8s ease-in-out infinite;
}

.photo-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 36px);
}

.photo-caption span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.66fr);
  align-items: stretch;
  gap: 16px;
}

.about-grid [data-animate] {
  transform: none;
  transition: opacity 0.55s ease;
}

.about-grid [data-animate].is-visible {
  transform: none;
}

.text-card,
.metric-card,
.feature-card,
.show-card,
.ticket-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.text-card {
  min-height: 310px;
  padding: 34px;
  border-radius: var(--radius);
}

.text-card p {
  max-width: 760px;
  font-size: 24px;
  line-height: 1.48;
}

.metric-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  contain: layout paint;
}

.metric-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(118, 183, 255, 0.38);
  border-radius: 50%;
  background: rgba(118, 183, 255, 0.1);
  color: #76b7ff;
}

.metric-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.metric-card strong {
  display: block;
  min-width: 4ch;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(46px, 5vw, 61px);
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.35;
}

.ticker {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 13px 16px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker span:nth-child(7n + 1) {
  border: 1px solid rgba(118, 183, 255, 0.38);
  background: rgba(118, 183, 255, 0.14);
  color: #cfe7ff;
}

.ticker span:nth-child(7n + 2) {
  border: 1px solid rgba(255, 122, 47, 0.38);
  background: rgba(255, 122, 47, 0.14);
  color: #ffd8c2;
}

.ticker span:nth-child(7n + 3) {
  border: 1px solid rgba(184, 246, 255, 0.36);
  background: rgba(184, 246, 255, 0.12);
  color: #dcfbff;
}

.ticker span:nth-child(7n + 4) {
  border: 1px solid rgba(255, 214, 102, 0.34);
  background: rgba(255, 214, 102, 0.13);
  color: #ffe9a8;
}

.ticker span:nth-child(7n + 5) {
  border: 1px solid rgba(182, 255, 154, 0.32);
  background: rgba(182, 255, 154, 0.12);
  color: #dcffd2;
}

.ticker span:nth-child(7n + 6) {
  border: 1px solid rgba(215, 185, 255, 0.36);
  background: rgba(215, 185, 255, 0.12);
  color: #eee0ff;
}

.ticker span:nth-child(7n) {
  border: 1px solid rgba(255, 151, 202, 0.34);
  background: rgba(255, 151, 202, 0.12);
  color: #ffd7ea;
}

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

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feature-number {
  color: var(--accent-2);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(118, 183, 255, 0.42);
  border-radius: 50%;
  background: rgba(118, 183, 255, 0.12);
  color: #76b7ff;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shows-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1100px;
}

.show-card {
  overflow: hidden;
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: transform 0.18s ease, border-color 0.2s ease;
}

.show-card:hover {
  border-color: rgba(184, 246, 255, 0.34);
}

.show-poster {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  cursor: pointer;
}

.show-poster:focus-visible {
  outline: 2px solid #76b7ff;
  outline-offset: -4px;
}

.show-poster::before,
.show-poster::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.72;
}

.show-poster::before {
  width: 180px;
  height: 180px;
  right: -52px;
  top: 42px;
  background: rgba(255, 255, 255, 0.24);
}

.show-poster::after {
  width: 210px;
  height: 210px;
  left: -90px;
  bottom: -80px;
  background: rgba(0, 0, 0, 0.26);
}

.poster-a .show-poster {
  background: url("assets/afisha10.jpg") center / cover no-repeat;
}

.poster-a .show-poster::before,
.poster-a .show-poster::after {
  display: none;
}

.poster-b .show-poster {
  background: linear-gradient(145deg, #210d0a, #ff7a2f 55%, #f2d1a7);
  background: url("assets/afisha9.jpg") center / cover no-repeat;
}

.poster-c .show-poster {
  background: linear-gradient(145deg, #080808, #5348ff 58%, #d7d3ff);
  background: url("assets/afisha8.jpg") center / cover no-repeat;
}

.poster-d .show-poster {
  background: linear-gradient(145deg, #111, #a3ff70 58%, #f7fff1);
  background: url("assets/afisha7.jpg") center / cover no-repeat;
}

.photo-gallery {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 4);
  grid-auto-flow: column;
  gap: 16px;
  padding-bottom: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: #76b7ff rgba(255, 255, 255, 0.08);
}

.photo-gallery::-webkit-scrollbar {
  height: 8px;
}

.photo-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #76b7ff;
}

.gallery-item {
  position: relative;
  min-height: 227px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  cursor: zoom-in;
  align-content: center;
  scroll-snap-align: start;
}

.gallery-item:nth-child(1) { order: 8; }
.gallery-item:nth-child(2) { order: 7; }
.gallery-item:nth-child(3) { order: 6; }
.gallery-item:nth-child(4) { order: 5; }
.gallery-item:nth-child(5) { order: 4; }
.gallery-item:nth-child(6) { order: 3; }
.gallery-item:nth-child(7) { order: 2; }
.gallery-item:nth-child(8) { order: 1; }

.gallery-item picture {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  filter: saturate(1.14) contrast(1.04);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.gallery-item.crop-left img {
  object-position: left center;
}

.gallery-item.crop-center img {
  object-position: center center;
}

.gallery-item.crop-right img {
  object-position: right center;
}

.gallery-item.crop-top img {
  object-position: center top;
}

.gallery-item.crop-wide img {
  object-position: center 38%;
}

.gallery-item.crop-low img {
  object-position: center 64%;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.gallery-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.poster-small {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.show-poster strong {
  position: relative;
  z-index: 1;
  max-width: 220px;
  color: #050505;
  font-family: "Unbounded", sans-serif;
  font-size: 38px;
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.poster-a .show-poster strong,
.poster-b .show-poster strong,
.poster-c .show-poster strong {
  color: #fff;
}

.show-info {
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
}

.show-info h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.show-info p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.45;
}

.show-ticket {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 16px;
  border-radius: 999px;
  background: #76b7ff;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.show-ticket:hover {
  background: #8fc5ff;
  transform: translateY(-2px);
}

.show-ticket.is-disabled,
.show-ticket.is-disabled:hover {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.show-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.show-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.show-modal-card {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(118, 183, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    var(--panel);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
}

.show-modal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
}

.show-modal-text {
  margin-bottom: 0;
  color: rgba(245, 245, 241, 0.78);
}

.show-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.show-modal-close::before,
.show-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.show-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.show-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ticket-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding: 42px;
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 246, 255, 0.22), transparent 30%),
    radial-gradient(circle at 15% 100%, rgba(255, 122, 47, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.ticket-panel h2 {
  max-width: 860px;
}

.ticket-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
}

.footer {
  position: relative;
  z-index: 1;
  width: var(--container);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-link,
.footer-top {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-link:hover,
.footer-top:hover {
  border-color: rgba(118, 183, 255, 0.42);
  background: rgba(118, 183, 255, 0.12);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #76b7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header[data-animate] {
  transform: translate(-50%, 34px);
}

.header[data-animate].is-visible {
  transform: translateX(-50%);
}

@keyframes photoFloat {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.045) translateY(-12px); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero,
  .ticket-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 126px;
  }

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

  .text-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .header {
    top: 12px;
    gap: 12px;
    padding: 10px 10px 10px 12px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    width: 148px;
  }

  .burger {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 28px;
    right: 28px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 15px 14px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100% - 28px, 452px);
    --radius: 22px;
  }

  body {
    background:
      radial-gradient(circle at 10% 3%, rgba(75, 214, 255, 0.18), transparent 82vw),
      radial-gradient(circle at 92% 30%, rgba(255, 122, 47, 0.16), transparent 74vw),
      var(--bg);
  }

  .cursor-glow {
    display: none;
  }

  .header {
    top: 10px;
  }

  .logo img {
    width: 128px;
  }

  .nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: 720px;
    align-items: start;
    padding-top: 92px;
  }

  .hero-copy {
    align-self: start;
    padding: 20px 18px 0;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  h1 {
    margin-bottom: 22px;
    max-width: 100%;
    font-size: clamp(32px, 8.2vw, 36px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
  }

  h2 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 0.96;
  }

  h3 {
    font-size: 22px;
  }

  p,
  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-lead {
    overflow-wrap: anywhere;
  }

  .hero-media::before {
    inset: -10px;
  }

  .hero-media img {
    height: 620px;
    object-position: center top;
  }

  .photo-caption {
    display: none;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .about-grid,
  .features-grid,
  .shows-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .text-card,
  .metric-card,
  .feature-card,
  .ticket-panel {
    min-height: unset;
    padding: 22px;
  }

  .text-card p {
    font-size: 18px;
  }

  .metric-card strong {
    font-size: 54px;
  }

  .feature-card {
    gap: 34px;
  }

  .show-poster {
    min-height: 480px;
    height: min(128vw, 640px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }

  .show-poster strong {
    font-size: 34px;
  }

  .photo-gallery {
    grid-auto-columns: minmax(248px, 82vw);
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .gallery-item {
    min-height: 165px;
  }

  .gallery-item img {
    max-height: 340px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox img {
    max-height: 78vh;
  }

  .ticket-panel {
    align-items: start;
  }

  .button-large {
    min-width: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .hero-copy {
    padding: 16px 10px 0;
  }

  h1 {
    font-size: 30px;
    letter-spacing: -0.04em;
  }
}
