:root {
  --bg: #0a0608;
  --bg-2: #120a0d;
  --bg-3: #1a1014;
  --paper: #f4ece2;
  --paper-2: #ebe1d3;
  --ink: #16100e;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(20, 12, 10, 0.12);
  --muted: #a89992;
  --muted-2: #6e6360;
  --accent: #ff2a3a;
  --accent-2: #ff5a1f;
  --accent-glow: rgba(255, 70, 36, 0.45);
  --vk: #2787f5;
  --container: 1280px;
  --radius: 18px;
  --radius-lg: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" on, "ss02" on;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-2);
}

.kicker--dark {
  color: var(--accent);
}

.kicker--light {
  color: rgba(255, 255, 255, 0.7);
}

.title {
  margin: 14px 0 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #fff;
}

.title--dark {
  color: var(--ink);
}

.title--light {
  color: #fff;
}

.title em {
  font-style: italic;
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  font-size: 1.15em;
}

.lead {
  margin: 22px 0 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.55;
}

.lead--dark {
  color: #4a3f3c;
  margin-left: auto;
  margin-right: auto;
}

.lead--light {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn__arrow {
  transition: transform 0.25s ease;
  font-weight: 600;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 50, 40, 0.4);
}

.btn--accent:hover {
  box-shadow: 0 20px 50px rgba(255, 50, 40, 0.55);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: var(--line);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--vk {
  background: var(--vk);
  color: #fff;
  box-shadow: 0 16px 36px rgba(39, 135, 245, 0.4);
}

.btn--lg {
  padding: 18px 30px;
  font-size: 1.05rem;
}

.btn--xl {
  padding: 22px 44px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

/* ===== Кнопка «Получить промокод» (зелёный градиент с пульсом) ===== */
.btn--promo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #062314;
  background: linear-gradient(135deg, #6dffa3 0%, #25d366 55%, #128c7e 100%);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 4px rgba(37, 211, 102, 0.18),
    0 14px 34px rgba(20, 100, 60, 0.45),
    inset 0 -6px 14px rgba(0, 0, 0, 0.12),
    inset 0 4px 10px rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: 0.22s ease;
  overflow: hidden;
}

.btn--promo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: promoShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.btn--promo:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 5px rgba(37, 211, 102, 0.28),
    0 20px 44px rgba(20, 100, 60, 0.55),
    inset 0 -6px 14px rgba(0, 0, 0, 0.12),
    inset 0 4px 10px rgba(255, 255, 255, 0.5);
}

.btn--promo__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #128c7e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.btn--promo__icon svg {
  width: 22px;
  height: 22px;
}

.btn--promo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn--promo__title {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #062314;
}

.btn--promo__sub {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(6, 35, 20, 0.78);
  letter-spacing: 0.01em;
}

.btn--promo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #062314;
  color: #6dffa3;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

@keyframes promoShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 640px) {
  .btn--promo {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    gap: 10px;
  }
  .btn--promo__icon { width: 34px; height: 34px; }
  .btn--promo__icon svg { width: 18px; height: 18px; }
  .btn--promo__title { font-size: 0.92rem; }
  .btn--promo__sub { font-size: 0.72rem; }
  .btn--promo__badge {
    min-width: 46px;
    height: 32px;
    font-size: 0.85rem;
  }
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.section-dark {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .lead {
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 8, 0.85) 0%,
    rgba(10, 6, 8, 0.5) 70%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
}

.topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.brand__star {
  color: var(--accent);
  font-size: 1.2rem;
}

.brand__logo {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand__logo--lg {
  height: 100px;
}

@media (max-width: 640px) {
  .brand__logo {
    height: 60px;
  }
  .brand__logo--lg {
    height: 78px;
  }
}

.topbar__nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.topbar__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.topbar__nav a:hover {
  color: var(--accent-2);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.topbar__social svg {
  width: 18px;
  height: 18px;
}

.topbar__social--vk {
  background: linear-gradient(135deg, #4a76a8 0%, #2b587a 100%);
  box-shadow: 0 6px 16px rgba(74, 118, 168, 0.35);
}

.topbar__social--tg {
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.35);
}

.topbar__social:hover,
.topbar__social:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  outline: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  isolation: isolate;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 22px;
  display: flex;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.1) saturate(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 90, 31, 0.18), transparent 55%),
    radial-gradient(circle at 0% 80%, rgba(255, 42, 58, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(10, 6, 8, 0.25) 0%, rgba(10, 6, 8, 0.5) 100%);
}

.hero__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.7;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  flex: 1;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 60px 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.18);
  border: 1px solid rgba(255, 90, 31, 0.4);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  backdrop-filter: blur(10px);
}

.chip--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: rgba(255, 255, 255, 0.85);
}

.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 42, 58, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 42, 58, 0.25); }
  50% { box-shadow: 0 0 0 9px rgba(255, 42, 58, 0); }
}

.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.hero__icons {
  display: flex;
  gap: 22px;
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.95;
}

.hero__icons span:nth-child(2) {
  color: var(--accent-2);
}

.hero__icons span:nth-child(3) {
  color: var(--accent);
}

.hero__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2.2vw, 32px);
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 10.5rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  max-width: 100%;
  word-break: keep-all;
}

.hero__title-num {
  color: var(--accent-2);
  -webkit-text-stroke: 0;
}

.hero__hand {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: #fff;
  margin: -6px 0 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero__songs {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.02em;
}

.hero__songs i {
  font-style: normal;
  color: var(--accent-2);
}

.hero__date-top {
  margin: 0 0 6px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 14px 32px var(--accent-glow);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero__city {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* ===== Hero CTA: «Купить билет» + жёлтый флажок-лента «Без наценки» сбоку ===== */
.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 22px 0 0;
  padding: 20px 175px 20px 50px; /* справа много места под ленту, чтобы стрелка влезла */
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  border: 2px solid transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.04em;
  box-shadow: 0 20px 48px rgba(255, 50, 40, 0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: heroCtaPulse 2.6s ease-in-out infinite;
  overflow: hidden; /* лента вписывается в форму кнопки */
  isolation: isolate;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 60px rgba(255, 50, 40, 0.65);
  outline: none;
  animation-play-state: paused;
}

.hero__cta-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.hero__cta-text .btn__arrow {
  transition: transform 0.25s ease;
  font-weight: 700;
}

.hero__cta:hover .btn__arrow {
  transform: translateX(5px);
}

/* Жёлтый флажок «БЕЗ НАЦЕНКИ» — справа внутри кнопки, ровно по её правому краю */
.hero__cta-ribbon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 9px 26px 9px 28px; /* левый padding больше — под V-вырез */
  background: linear-gradient(135deg, #ffe45a 0%, #ffb800 100%);
  color: #1a1006;
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  /* Левый край — V-вырез (острая стрелка указывает на «Купить билет»), правый ровный */
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 2;
}

/* Бегущий блик-shimmer поверх флажка */
.hero__cta-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: heroCtaRibbonShine 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroCtaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 48px rgba(255, 50, 40, 0.5);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 26px 60px rgba(255, 50, 40, 0.7);
  }
}

@keyframes heroCtaRibbonShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta,
  .hero__cta-ribbon::after {
    animation: none;
  }
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 0 0;
  flex-wrap: wrap;
}

.hero__venue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__venue-time {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--accent-2);
}

.hero__venue-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.hero__venue-place {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

/* MARQUEE */

.marquee {
  position: relative;
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
  height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  animation: marquee 28s linear infinite;
}

.marquee__track i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* COUNTDOWN */

.countdown {
  background: var(--bg);
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.countdown__row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.countdown__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.countdown-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 90, 31, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: var(--radius);
  padding: 26px 12px;
  text-align: center;
}

.countdown-card strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-card span {
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--muted);
}

/* ABOUT */

.about {
  background: var(--paper);
  color: var(--ink);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.15), transparent 70%);
  pointer-events: none;
}

/* SCENE WITH TV — left text, right TV */

.about__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about__copy .title { margin-top: 14px; }
.about__copy .lead {
  margin: 22px 0 0;
  max-width: 520px;
  color: #4a3f3c;
}

.about__copy .btn { margin-top: 28px; }

/* RETRO WOOD-FRAME TV */

.tv-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0 80px;
}

.tv {
  position: relative;
  width: min(100%, 560px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  z-index: 2;
}

.tv__body {
  position: relative;
  border-radius: 18px;
  padding: 26px;
  background:
    linear-gradient(180deg, #4a4a4e 0%, #353539 28%, #25252a 70%, #1a1a1e 100%);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.16),
    inset 0 -3px 6px rgba(0, 0, 0, 0.6),
    inset 4px 0 0 rgba(255, 255, 255, 0.04),
    inset -4px 0 0 rgba(0, 0, 0, 0.25),
    0 6px 0 #0e0e10,
    0 16px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #0d0d0f;
}

/* side ridges (вентиляционные ребра по бокам) */
.tv__body::before,
.tv__body::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 26%;
  width: 14px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0px,
      rgba(0, 0, 0, 0.35) 2px,
      rgba(255, 255, 255, 0.06) 2px,
      rgba(255, 255, 255, 0.06) 4px
    );
  border-radius: 4px;
  pointer-events: none;
}

.tv__body::before { left: 6px; }
.tv__body::after { right: 6px; }

.tv__bezel {
  position: relative;
  padding: 18px 18px 22px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #2a2a2e 0%, #1a1a1e 60%, #0e0e12 100%);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.7),
    inset 0 -2px 4px rgba(255, 255, 255, 0.06),
    inset 2px 0 4px rgba(0, 0, 0, 0.5),
    inset -2px 0 4px rgba(0, 0, 0, 0.5);
}

.tv__brand {
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: #6c6c70;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

.tv__screen {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px / 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, #1a1a1c 0%, #050505 100%);
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.95),
    inset 0 0 0 6px #050507,
    inset 0 0 0 8px #2c2c30;
}

.tv__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    138deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 22%,
    transparent 45%
  );
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
}

.tv__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 0;
  position: relative;
}

.tv__logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: #888890;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

.tv__btns {
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 4px;
  background: linear-gradient(180deg, #15151a, #08080c);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.85);
}

.tv__btns span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #b0b0b4 0, #6a6a70 60%, #2a2a2c 100%);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}

.tv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  filter: saturate(0.95) contrast(1.08) brightness(0.98);
}

/* RIGHT CONTROL PANEL */

.tv__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #1d1d1f 0%, #0e0e10 100%);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.85),
    inset 0 -1px 1px rgba(255, 255, 255, 0.08);
  margin-right: 22px;
}

.tv__panel-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.tv__btn {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #f0f0f3 0, #b0b0b5 25%, #6a6a6e 70%, #2a2a2c 100%);
  box-shadow:
    inset 0 -2px 1px rgba(0, 0, 0, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.55),
    0 2px 3px rgba(0, 0, 0, 0.5);
}

.tv__dial {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%,
      #fafafa 0,
      #d0d0d4 18%,
      #888890 55%,
      #3a3a3e 95%);
  box-shadow:
    inset 0 -3px 1px rgba(0, 0, 0, 0.5),
    inset 0 3px 2px rgba(255, 255, 255, 0.65),
    inset 0 0 0 2px rgba(0, 0, 0, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.55);
}

.tv__dial::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, #c4c4c8 0, #6f6f74 60%, #2a2a2c 100%);
  box-shadow:
    inset 0 -2px 1px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.tv__dial-mark {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 5px;
  height: 18%;
  background: #0a0a0c;
  border-radius: 3px;
  transform: translateX(-50%);
  z-index: 2;
}

.tv__speaker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  align-content: end;
  padding: 10px 4px 2px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0a0a0c, #050507);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.9);
}

.tv__speaker span {
  display: block;
  height: 100%;
  min-height: 70px;
  background:
    linear-gradient(180deg, #1a1a1c 0%, #050505 50%, #1a1a1c 100%);
  border-radius: 2px;
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.05),
    inset -1px 0 0 rgba(0, 0, 0, 0.5);
}

.tv__scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0,
      rgba(0, 0, 0, 0.15) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: multiply;
  opacity: 0.6;
  animation: tvFlicker 4s infinite;
}

@keyframes tvFlicker {
  0%, 92%, 100% { opacity: 0.6; }
  93% { opacity: 0.45; }
  95% { opacity: 0.7; }
}

.tv__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.tv__channel {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffd44a;
  font-family: "Unbounded", monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  border-radius: 4px;
  text-shadow: 0 0 6px rgba(255, 200, 0, 0.55);
}

.tv__rec {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}

.tv__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.tv__brand {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #5a4632;
  font-size: 0.78rem;
}

.tv__knobs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tv__knob {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0, #b9a48a 25%, #6e5740 100%);
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.22),
    inset 0 2px 2px rgba(255, 255, 255, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.18);
  position: relative;
}

.tv__knob::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 3px;
  height: 10px;
  background: #2a2a2a;
  border-radius: 3px;
  transform: translateX(-50%);
}

.tv__knob--btn {
  width: 32px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tv__knob--btn::after { display: none; }

.tv__legs {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  margin-top: -4px;
}

.tv__legs span {
  width: 40px;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #6f5a45, #3f3225);
}

/* SCRIBBLES */

.scribble {
  position: absolute;
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

.tv-wrap .scribble--1 {
  top: 8px;
  left: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  transform: rotate(-8deg);
  color: var(--accent);
}

.tv-wrap .scribble--2 {
  top: 24px;
  right: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  transform: rotate(6deg);
}

.tv-wrap .scribble--3 {
  bottom: 18px;
  left: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  transform: rotate(-5deg);
}

.tv-wrap .scribble--4 {
  bottom: 4px;
  right: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  transform: rotate(8deg);
  color: var(--accent);
}

/* TICKETS */

.tickets {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.tickets::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), transparent 70%);
  pointer-events: none;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.ticket-card {
  position: relative;
  padding: 32px 30px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1a1216 0%, #0e0709 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.25s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, 0.4);
}

.ticket-card--featured {
  background: linear-gradient(160deg, #2b1014 0%, #14080a 100%);
  border-color: var(--accent);
  box-shadow: 0 30px 70px rgba(255, 50, 40, 0.18);
  transform: translateY(-8px);
}

.ticket-card__tag {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.ticket-card__tag--hot {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.ticket-card h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
}

.ticket-card__sub {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticket-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.04em;
}

.ticket-card__price b {
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticket-card__price i {
  font-style: normal;
  font-size: 1.4rem;
  color: var(--muted);
}

.ticket-card ul {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.ticket-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.ticket-card li::before {
  content: "✦";
  color: var(--accent-2);
  font-size: 0.88rem;
}

.ticket-card .btn {
  margin-top: auto;
  justify-content: center;
}

.tickets__single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
}

.ticket-card--single {
  width: min(100%, 560px);
  text-align: center;
  align-items: center;
  background: linear-gradient(160deg, #2b1014 0%, #14080a 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 36px 80px rgba(255, 50, 40, 0.22);
  padding: 40px 36px;
  gap: 22px;
  transform: none;
}

.ticket-card--single:hover {
  transform: translateY(-5px);
}

.ticket-card--single h3 {
  font-size: 2.1rem;
}

.ticket-card--single .ticket-card__price {
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.ticket-card--single .ticket-card__price small {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-card--single .ticket-card__price b {
  font-size: 4rem;
}

.ticket-card--single .ticket-card__price i {
  font-size: 1.8rem;
}

.ticket-card--single ul {
  width: 100%;
  max-width: 360px;
}

.ticket-card--single li {
  justify-content: center;
}

.ticket-card--single .btn {
  margin-top: 4px;
}

.tickets__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 480px;
}

.tickets__note--highlight {
  margin-top: 20px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 42, 58, 0.18) 0%, rgba(255, 90, 31, 0.18) 100%);
  border: 1px solid rgba(255, 90, 31, 0.55);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.tickets__note-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 42, 58, 0.45);
}

/* PROMO */

.promo {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(39, 135, 245, 0.45), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255, 42, 58, 0.3), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  overflow: hidden;
}

.promo__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.promo__copy {
  position: relative;
}

.promo__arrow {
  position: absolute;
  right: clamp(220px, 22vw, 320px);
  top: 50%;
  width: clamp(140px, 16vw, 200px);
  height: auto;
  color: var(--accent);
  filter: drop-shadow(0 4px 14px rgba(255, 42, 58, 0.45));
  transform: translateY(-60%) rotate(-14deg);
  animation: promoArrow 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promoArrow {
  0%, 100% { transform: translateY(-60%) rotate(-14deg) translateX(0); }
  50%      { transform: translateY(-60%) rotate(-14deg) translateX(10px); }
}

@media (prefers-reduced-motion: reduce) {
  .promo__arrow { animation: none; }
}

/* TRACKS */

.tracks {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.tracks .lead {
  color: #4a3f3c;
}

.tracks__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 42px auto 0;
  font-family: "Unbounded", sans-serif;
  max-width: 1120px;
}

.tracks__cloud li {
  padding: 20px 34px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-dark);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: 0.25s ease;
  cursor: default;
}

.tracks__cloud li:nth-child(3n) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tracks__cloud li:nth-child(5n) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tracks__cloud li:hover {
  transform: translateY(-3px) rotate(-2deg);
  border-color: var(--accent);
}

.tracks__cloud .tracks__more {
  display: flex;
  align-items: center;
  background: transparent;
  border-color: transparent;
  color: var(--accent);
  font-family: "Caveat", cursive;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  padding: 6px 14px;
  transform: rotate(-3deg);
}

.tracks__cloud .tracks__more:hover {
  border-color: transparent;
  transform: rotate(-3deg);
}

.tracks__hand-btn {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: 40px auto 0;
  padding: 16px 34px;
  text-decoration: none;
  background: transparent;
  color: var(--accent);
  border: 2.5px solid #0f0f12;
  border-radius: 999px;
  animation: handBtnPulse 2.2s ease-in-out infinite;
}

.tracks__hand-btn:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
  background: rgba(15, 15, 18, 0.06);
}

.tracks__hand-btn-text {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.tracks__hand-btn .btn__arrow {
  color: var(--accent);
  font-size: 1.4rem;
}

@keyframes handBtnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 50, 40, 0.45);
  }
  60% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(255, 50, 40, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 50, 40, 0);
  }
}

@media (max-width: 640px) {
  .tracks__hand-btn {
    margin-top: 28px;
    padding: 12px 22px;
    gap: 10px;
  }
  .tracks__hand-btn-text {
    font-size: clamp(1.5rem, 6.5vw, 1.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracks__hand-btn {
    animation: none;
  }
}

.tracks__cloud li {
  --track-badge: var(--accent);
  --track-glyph: #fff;
}

.tracks__cloud li:nth-child(3n) {
  --track-badge: #fff;
  --track-glyph: var(--ink);
}

.tracks__cloud li:nth-child(5n) {
  --track-badge: #fff;
  --track-glyph: var(--accent);
}

.tracks__cloud li:has(.track) {
  padding: 0;
  position: relative;
}

.track {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 16px 28px 16px 16px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  border-radius: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s ease;
}

.track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.track__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--track-badge);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.track__icon::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--track-glyph);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><polygon points='3,1.2 10.5,6 3,10.8'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><polygon points='3,1.2 10.5,6 3,10.8'/></svg>") no-repeat center / contain;
  margin-left: 2px;
  transition: background-color 0.2s ease;
}

.track:hover .track__icon {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(255, 71, 87, 0.35);
}

.track--playing .track__icon::before {
  margin-left: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><rect x='2.5' y='1.5' width='2.5' height='9' rx='0.6'/><rect x='7' y='1.5' width='2.5' height='9' rx='0.6'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><rect x='2.5' y='1.5' width='2.5' height='9' rx='0.6'/><rect x='7' y='1.5' width='2.5' height='9' rx='0.6'/></svg>") no-repeat center / contain;
}

.track--playing .track__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--track-badge);
  opacity: 0;
  animation: trackPulse 1.4s ease-out infinite;
  pointer-events: none;
}

.tracks__cloud li:has(.track--playing) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.18), 0 14px 30px rgba(255, 71, 87, 0.28);
  transform: translateY(-3px);
}

@keyframes trackPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* GALLERY */

.gallery {
  background: var(--paper-2);
  color: var(--ink);
  padding: 120px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.gallery__item:hover { transform: scale(1.02); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item:nth-child(1) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 30% 30%, #ff7a43, #6f2c2c 50%, #1d0f10); }
.gallery__item:nth-child(2) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 60% 40%, #f7d97a, #8d6a2c 48%, #1f1812); }
.gallery__item:nth-child(3) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 40% 50%, #f86fc7, #6f2360 50%, #1f0f1d); }
.gallery__item:nth-child(4) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.6)), radial-gradient(circle at 50% 30%, #ff7045, #8a2a1f 50%, #14080a); }
.gallery__item:nth-child(5) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 30% 60%, #ff5a5a, #6a1f24 50%, #14080a); }
.gallery__item:nth-child(6) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 70% 30%, #cccccc, #6f6f6f 50%, #1c1c1c); }
.gallery__item:nth-child(7) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 40% 30%, #ffaa55, #885028 50%, #1d130b); }
.gallery__item:nth-child(8) { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), radial-gradient(circle at 60% 40%, #ff5a1f, #8b2a1c 50%, #1a0a08); }

/* ARTIST */

.artist {
  padding: 100px 0 110px;
}

.artist__copy {
  max-width: 820px;
  margin: 36px auto 0;
}

.artist__copy p {
  margin: 0 0 18px;
  line-height: 1.75;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.artist__copy p strong {
  color: #fff;
  font-weight: 700;
}

.artist__copy h3 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 36px 0 14px;
}

.artist__links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.artist__link:hover,
.artist__link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  outline: none;
}

.artist__link span[aria-hidden] {
  color: var(--accent-2);
  font-size: 0.85em;
}

/* WORDS */

.words {
  padding: 110px 0;
}

.words__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.word-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 90, 31, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.word-card p {
  font-family: "Caveat", cursive;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.35;
  color: #fff;
}

.word-card span {
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* EVENT */

.event {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 0;
  position: relative;
}

.ticket {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
}

.ticket__main {
  padding: 40px;
  border-right: 1px dashed rgba(255, 255, 255, 0.18);
  position: relative;
}

.ticket__main::before,
.ticket__main::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--paper);
}

.ticket__main::before { top: -10px; }
.ticket__main::after { bottom: -10px; }

.ticket__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticket__row span,
.ticket__venue span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--accent-2);
  font-weight: 700;
}

.ticket__row strong,
.ticket__venue strong {
  display: block;
  margin-top: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}

.ticket__venue { margin-top: 28px; }
.ticket__venue strong { font-size: 1.65rem; }
.ticket__venue small { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.65); }

.ticket__cta {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 90, 31, 0.4), transparent 55%),
    linear-gradient(160deg, #1a1014 0%, #0a0608 100%);
}

.ticket__cta p {
  font-size: 1.15rem;
  font-weight: 600;
}

.ticket__cta .btn { align-self: flex-start; }

.ticket__cta small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.map {
  margin-top: 26px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #1a1a1c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FOOTER */

.footer {
  background: #050203;
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.brand--footer { margin-bottom: 18px; }

.footer p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 420px;
}

.footer__col {
  display: grid;
  gap: 8px;
}

.footer__col span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 6px;
}

.footer__col a,
.footer__col p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  margin: 0;
}

.footer__col a:hover { color: var(--accent); }

.footer__socials-label {
  margin-top: 14px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.86rem !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer .footer__col a.footer__social,
.footer .footer__col a.footer__social:visited {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  color: #000 !important;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}

.footer .footer__col a.footer__social span {
  color: #000 !important;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #fff !important;
}

.footer__social--tg {
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.35);
}

.footer .footer__col a.footer__social:hover,
.footer .footer__col a.footer__social:focus-visible {
  transform: translateY(-2px);
  outline: none;
  color: #000 !important;
}

.footer__social--tg:hover { box-shadow: 0 12px 28px rgba(34, 158, 217, 0.5); }

.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* RESPONSIVE */

@media (max-width: 1080px) {
  .topbar__nav { display: none; }
  .countdown__row,
  .promo__inner,
  .tickets__grid,
  .words__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about__stage {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about__copy { text-align: center; }
  .about__copy .lead { margin-left: auto; margin-right: auto; }
  .ticket-card--featured { transform: none; }
  .ticket { grid-template-columns: 1fr; }
  .ticket__main {
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  }
  .ticket__main::before,
  .ticket__main::after {
    top: auto; bottom: -10px; right: auto;
  }
  .ticket__main::before { left: -10px; }
  .ticket__main::after { right: -10px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .hero__bottom {
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }
  .promo__inner {
    grid-template-columns: 1fr;
  }
  .promo__arrow {
    position: relative;
    right: auto;
    top: auto;
    margin: 6px auto 0;
    width: clamp(110px, 22vw, 160px);
    transform: rotate(80deg);
  }
  @keyframes promoArrow {
    0%, 100% { transform: rotate(80deg) translateX(0); }
    50%      { transform: rotate(80deg) translateX(8px); }
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 80px, var(--container)); }
  .topbar__row { grid-template-columns: 1fr auto; gap: 8px; padding: 12px 0; }
  .topbar__nav { display: none; }
  .topbar__actions { gap: 8px; }
  .topbar__socials { gap: 6px; }
  .topbar__social { width: 30px; height: 30px; }
  .topbar__social svg { width: 15px; height: 15px; }
  .topbar__actions .btn--sm { padding: 8px 12px; font-size: 0.72rem; }
  .topbar__actions .btn--sm .btn__arrow { display: none; }
  .brand__text { font-size: 0.82rem; }
  .brand__logo { max-width: 88px; height: auto; }
  .hero {
    padding-top: 86px;
    padding-bottom: 22px;
    min-height: calc(100vh - 52px);
    min-height: calc(100svh - 52px);
    overflow: hidden;
  }
  .hero__inner { gap: 22px; }
  .hero__icons { display: none; }
  .hero__center { gap: 12px; padding-top: 28px; }

  .hero__date-top {
    position: absolute;
    top: 96px;
    left: 16px;
    z-index: 4;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    font-size: clamp(0.85rem, 3.2vw, 1.05rem);
    letter-spacing: 0.06em;
  }
  .hero__city {
    position: absolute;
    top: 96px;
    right: 16px;
    z-index: 4;
    font-size: clamp(0.8rem, 3vw, 1rem);
    letter-spacing: 0.22em;
  }

  .hero__title {
    font-size: clamp(2.4rem, 13vw, 4.4rem);
    gap: 8px;
    letter-spacing: -0.06em;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero__hand { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .hero__songs { font-size: 0.95rem; gap: 8px; }

  .hero__cta {
    margin: 26px 0 0;
    padding: 15px 130px 15px 28px;
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
  }
  .hero__cta-ribbon {
    right: 0;
    padding: 6px 18px 6px 20px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
  }

  .hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 0 0;
    text-align: center;
  }
  .hero__venue {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .hero__venue-time {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }
  .hero__venue-dot { display: none; }
  .hero__venue-place {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    opacity: 0.85;
  }

  .marquee { height: 52px; padding: 9px 0; }
  .marquee__track { font-size: clamp(0.8rem, 1.8vw, 1.05rem); gap: 17px; }
  .tickets__note--highlight {
    font-size: 0.92rem;
    padding: 12px 18px;
  }
  .tracks .title em { display: block; }
  .countdown,
  .about,
  .tickets,
  .promo,
  .tracks,
  .gallery,
  .words,
  .artist,
  .event,
  .footer { padding: 64px 0; }
  .artist__copy { margin-top: 24px; }
  .artist__copy h3 { font-size: 1.15rem; margin: 28px 0 10px; }
  .artist__copy p { font-size: 0.98rem; }
  .artist__link { padding: 8px 14px; font-size: 0.88rem; }
  .countdown__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tv-wrap { padding: 60px 0 70px; }
  .tv { width: 100%; max-width: 380px; }
  .tv__body { padding: 14px; border-radius: 14px; }
  .tv__body::before, .tv__body::after { width: 8px; top: 14%; bottom: 22%; }
  .tv__body::before { left: 3px; }
  .tv__body::after { right: 3px; }
  .tv__bezel { padding: 12px 12px 14px; border-radius: 10px; }
  .tv__brand { font-size: 0.55rem; top: 5px; right: 12px; letter-spacing: 0.14em; }
  .tv__bottom { padding: 10px 4px 0; }
  .tv__logo { font-size: 0.66rem; letter-spacing: 0.24em; }
  .tv__btns { padding: 4px 8px; gap: 5px; }
  .tv__btns span { width: 8px; height: 8px; }
  .tv-wrap .scribble--1 { left: 0; font-size: 1.4rem; top: 10px; }
  .tv-wrap .scribble--2 { right: 0; font-size: 1.3rem; top: 26px; }
  .tv-wrap .scribble--3 { left: 0; font-size: 1.3rem; bottom: 22px; }
  .tv-wrap .scribble--4 { right: 0; font-size: 1.4rem; bottom: 6px; }
  .ticket__row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ticket__main, .ticket__cta { padding: 24px; }

  .ticket-card--single h3 { font-size: 1.7rem; }
  .ticket-card--single .ticket-card__price b { font-size: 3rem; }
  .ticket-card--single .ticket-card__price i { font-size: 1.5rem; }
  .ticket-card--single .ticket-card__price small { font-size: 0.9rem; }

  .tracks .container { width: min(100% - 32px, var(--container)); }
  .tracks__cloud {
    gap: 10px 10px;
    margin-top: 28px;
    max-width: none;
  }
  .tracks__cloud li {
    font-size: 0.95rem;
    border-radius: 999px;
  }
  .track {
    padding: 10px 18px 10px 10px;
    gap: 10px;
  }
  .track__icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }
  .track__icon::before {
    width: 12px;
    height: 12px;
  }
  .tracks__cloud li:has(.track):nth-child(1) .track { transform: rotate(-2deg); }
  .tracks__cloud li:has(.track):nth-child(2) .track { transform: rotate(1.5deg); }
  .tracks__cloud li:has(.track):nth-child(3) .track { transform: rotate(-1deg); }
  .tracks__cloud li:has(.track):nth-child(4) .track { transform: rotate(2deg); }
  .tracks__cloud li:has(.track):nth-child(5) .track { transform: rotate(-1.5deg); }
  .tracks__cloud li:has(.track):nth-child(6) .track { transform: rotate(2.5deg); }
  .tracks__cloud li:has(.track):nth-child(7) .track { transform: rotate(-2deg); }
  .tracks__cloud li:has(.track):nth-child(8) .track { transform: rotate(1deg); }
  .tracks__cloud .tracks__more {
    font-size: 1.7rem;
    padding: 4px 10px;
  }

  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide,
  .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .map { height: 240px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
