* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Calibri,
    "Carlito",
    "Segoe UI",
    "Segoe UI Variable",
    Arial,
    Helvetica,
    sans-serif;
  color: #f6f3ec;
  background:
    radial-gradient(circle at 50% 38%, rgba(183, 139, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 115%, rgba(127, 255, 232, 0.08), transparent 30%),
    radial-gradient(circle at 80% 115%, rgba(120, 84, 255, 0.1), transparent 34%),
    #010201;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: scanlinesFloat 9s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 45% 42%, rgba(201, 168, 255, 0.13), transparent 18%),
    conic-gradient(from 180deg, transparent, rgba(127, 255, 232, 0.055), rgba(120, 84, 255, 0.075), transparent 34%);
  filter: blur(34px);
  opacity: 0.55;
  pointer-events: none;
  will-change: opacity, transform;
  animation:
    neonDrift 12s ease-in-out infinite,
    auraHueShift 18s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(100%, 1040px);
  padding: clamp(24px, 4.8vw, 48px);
  text-align: center;
  border: 1px solid rgba(201, 168, 255, 0.16);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 255, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(0, 0, 0, 0.58);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 92px rgba(183, 139, 255, 0.04);
  backdrop-filter: blur(10px);
  will-change: transform, box-shadow;
  animation: heroFloat 9.5s ease-in-out infinite;
}

/* Anti-flicker: avoid GPU/backdrop glitches on some devices */
.hero,
.hero-social,
.hero-media,
.release-stage,
.release-card,
.logo-wrap,
.video-player {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* iOS Safari often flickers with backdrop-filter + animations */
@supports (-webkit-touch-callout: none) {
  .hero {
    backdrop-filter: none;
  }
}

.hero::before {
  content: none;
  position: absolute;
  inset: -35% -65%;
  z-index: 1;
  background:
    linear-gradient(
      115deg,
      transparent 36%,
      rgba(255, 255, 255, 0.05) 43%,
      rgba(201, 168, 255, 0.22) 49%,
      rgba(127, 255, 232, 0.12) 54%,
      transparent 62%
    );
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-42%, 12%, 0) rotate(0.001deg);
  mix-blend-mode: screen;
  animation: heroGlossSweep 7.8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(201, 168, 255, 0.24);
  border-radius: inherit;
  opacity: 0.64;
  pointer-events: none;
  box-shadow:
    0 0 24px rgba(201, 168, 255, 0.22),
    inset 0 0 38px rgba(127, 255, 232, 0.08);
  animation: borderColorFlow 8s ease-in-out infinite;
}

.topline {
  margin: 0 0 26px;
  color: #c9a8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation:
    softBlink 4.8s ease-in-out infinite,
    accentColorFlow 9s ease-in-out infinite;
}

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 46px rgba(201, 168, 255, 0.12),
    0 24px 82px rgba(0, 0, 0, 0.42);
  will-change: transform, filter, box-shadow;
  animation:
    mediaBreath 8.5s ease-in-out infinite,
    mediaPulseGlow 6.7s ease-in-out infinite;
}

.hero-media:has(.logo-wrap.is-stable) {
  animation: mediaPulseGlow 6.7s ease-in-out infinite;
  transform: none;
}

.hero-media::before {
  content: none;
}

.release-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 36px;
}

.release-slider {
  display: flex;
  width: 200%;
  transition: transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.release-stage.is-showing-clip .release-slider {
  transform: translateX(-50%);
}

.release-stage.is-showing-clip .release-card,
.release-stage:not(.is-showing-clip) .clip-panel {
  pointer-events: none;
}

.release-panel {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
}

.release-card {
  --release-padding: clamp(20px, 3vw, 32px);
  --logo-top-gap: clamp(18px, 2.8vw, 28px);
  --logo-bottom-gap: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  border: 1px solid rgba(174, 144, 255, 0.26);
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, #000 0 50%, #030304 62%, rgba(11, 10, 16, 0.98) 100%);
  box-shadow:
    0 0 54px rgba(201, 168, 255, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  will-change: transform, filter, box-shadow;
  animation: mediaBreath 8.5s ease-in-out infinite;
}

.clip-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(220px, 0.65fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(174, 144, 255, 0.26);
  border-radius: 36px;
  background:
    radial-gradient(circle at 22% 12%, rgba(127, 255, 232, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(127, 255, 232, 0.08), rgba(174, 144, 255, 0.08)),
    rgba(3, 3, 6, 0.92);
  box-shadow:
    0 0 54px rgba(201, 168, 255, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation:
    mediaBreath 8.5s ease-in-out infinite,
    mediaPulseGlow 6.7s ease-in-out infinite;
}

.clip-panel-content {
  min-width: 0;
  text-align: left;
}

.clip-panel-title {
  margin: 0;
  color: #f6f3ec;
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.clip-panel .video-player {
  width: 100%;
  margin: 0;
}

.release-cover {
  width: 100%;
  align-self: start;
  border-radius: 18px;
  border: 1px solid rgba(246, 243, 236, 0.12);
  box-shadow:
    0 0 34px rgba(201, 168, 255, 0.18),
    0 18px 52px rgba(0, 0, 0, 0.46);
}

.release-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--release-padding) var(--release-padding);
}

.logo-wrap.release-logo {
  position: relative;
  grid-column: 1 / -1;
  justify-self: stretch;
  display: block;
  width: 100%;
  max-width: none;
  margin: var(--logo-top-gap) 0 var(--logo-bottom-gap);
  background: #000;
  box-shadow: none;
  border-radius: 0;
  transform: none;
  cursor: pointer;
}

.logo-wrap.release-logo.is-charging,
.logo-wrap.release-logo.is-long-chaos {
  box-shadow: none;
}

.logo-wrap.release-logo::before {
  content: "";
  position: absolute;
  inset: -28px -64px -56px;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0 72%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(ellipse at 50% 50%, #000 0 58%, rgba(0, 0, 0, 0.96) 70%, rgba(0, 0, 0, 0) 86%);
  pointer-events: none;
}

.logo-wrap.release-logo img,
.logo-wrap.release-logo.is-assembled img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  border-radius: 0;
  filter: none;
}

.logo-wrap.release-logo .logo-particles {
  z-index: 2;
}

.release-kicker {
  margin: 0 0 14px;
  color: #c9a8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.release-title {
  margin: 0;
  color: #f6f3ec;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.release-subtitle {
  margin: 12px 0 18px;
  color: rgba(246, 243, 236, 0.72);
  font-size: clamp(0.95rem, 2.3vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.track-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: track;
}

.track-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 10px 18px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(174, 144, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(127, 255, 232, 0.025) 52%, rgba(201, 168, 255, 0.035)),
    rgba(7, 7, 12, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.28);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.track-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 74%, rgba(127, 255, 232, 0.045));
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.track-item.is-playing {
  border-color: rgba(127, 255, 232, 0.48);
  background:
    linear-gradient(135deg, rgba(127, 255, 232, 0.13), rgba(201, 168, 255, 0.08)),
    rgba(16, 21, 24, 0.88);
  box-shadow:
    0 0 30px rgba(127, 255, 232, 0.13),
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.track-item.is-playing::after {
  opacity: 1;
}

.track-item.is-suggested {
  border-color: rgba(201, 168, 255, 0.58);
  box-shadow:
    0 0 28px rgba(201, 168, 255, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.track-item.is-suggested .track-toggle {
  border-color: rgba(201, 168, 255, 0.78);
  box-shadow:
    0 0 30px rgba(201, 168, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.track-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #f6f3ec;
  cursor: pointer;
  border: 1px solid rgba(127, 255, 232, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(127, 255, 232, 0.17), rgba(201, 168, 255, 0.2)),
    rgba(20, 18, 32, 0.88);
  box-shadow:
    0 0 20px rgba(201, 168, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.track-toggle:hover,
.track-toggle:focus-visible {
  outline: none;
  border-color: rgba(127, 255, 232, 0.72);
  box-shadow: 0 0 28px rgba(127, 255, 232, 0.22);
  transform: scale(1.05);
}

.track-toggle-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.track-item.is-playing .track-toggle-icon {
  width: 13px;
  height: 15px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64% 100%);
}

.track-cover {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(246, 243, 236, 0.1);
  box-shadow:
    0 0 22px rgba(201, 168, 255, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.34);
}

.track-meta {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.track-title {
  display: flex;
  align-items: baseline;
  min-width: 0;
  color: rgba(246, 243, 236, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 850;
  line-height: 1.2;
}

.track-title::before {
  counter-increment: track;
  content: counter(track, decimal-leading-zero);
  margin-right: 10px;
  color: rgba(201, 168, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.track-artist {
  color: rgba(246, 243, 236, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.track-audio {
  display: none;
}

.clip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 20px;
  padding: 14px 20px;
  color: #f6f3ec;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(127, 255, 232, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(127, 255, 232, 0.18), rgba(201, 168, 255, 0.2)),
    rgba(20, 18, 32, 0.78);
  box-shadow:
    0 0 24px rgba(127, 255, 232, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.36);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.release-content .clip-button[data-show-clip] {
  align-self: flex-end;
}

.clip-button:hover,
.clip-button:focus-visible {
  outline: none;
  border-color: rgba(127, 255, 232, 0.74);
  box-shadow:
    0 0 32px rgba(127, 255, 232, 0.22),
    0 14px 38px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px);
}

.hero-media .logo-wrap {
  margin: 0;
  max-width: none;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.hero-media .logo-wrap img {
  border-radius: 10px 10px 0 0;
}

.hero-media .video-player {
  margin: 0;
  width: 100%;
  border-radius: 0;
  border-top: none;
}

.clip-title {
  margin: 0;
  padding: 12px 16px 16px;
  text-align: center;
  font-size: clamp(0.82rem, 2.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: rgba(246, 243, 236, 0.88);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(20, 18, 32, 0.72));
  border-top: 1px solid rgba(174, 144, 255, 0.2);
  border-radius: 0 0 22px 22px;
}

.hero-media + .label,
.release-stage + .label {
  margin-top: 22px;
}

.logo-wrap {
  position: relative;
  --bass-glow: 0.12;
  --bass-scale: 1;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border-radius: 12px;
  background: #000;
  box-shadow:
    0 0 46px rgba(201, 168, 255, var(--bass-glow)),
    0 0 140px rgba(127, 255, 232, 0.035);
  cursor: pointer;
  will-change: filter;
}

.logo-wrap:focus-visible {
  outline: 2px solid rgba(201, 168, 255, 0.78);
  outline-offset: 6px;
}

.logo-wrap.is-charging {
  box-shadow:
    0 0 70px rgba(201, 168, 255, 0.2),
    0 0 170px rgba(127, 255, 232, 0.06);
}

.logo-wrap.is-stable {
  filter: none;
}

.logo-wrap.is-long-chaos {
  box-shadow:
    0 0 74px rgba(201, 168, 255, 0.24),
    0 0 190px rgba(127, 255, 232, 0.07);
}

.logo-wrap img {
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  filter:
    contrast(1.2)
    brightness(0.7)
    drop-shadow(0 0 12px rgba(201, 168, 255, 0.16));
  transition:
    opacity 260ms ease,
    filter 260ms ease;
}

.logo-wrap.is-assembled img {
  opacity: 1;
  filter:
    contrast(1.12)
    brightness(1.1)
    drop-shadow(0 0 18px rgba(201, 168, 255, 0.24));
}

.logo-particles {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  perspective: 900px;
}

.logo-particle {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(100% / var(--cols));
  height: calc(100% / var(--rows));
  background-image: url("assets/logo.jpg");
  background-size: calc(var(--cols) * 100%) calc(var(--rows) * 100%);
  background-position: var(--bg-x) var(--bg-y);
  opacity: 0.22;
  filter:
    contrast(1.08)
    brightness(0.68);
  transform:
    translate3d(var(--scatter-x), var(--scatter-y), var(--scatter-z))
    rotate(var(--scatter-r))
    scale(var(--scatter-scale));
  transition:
    opacity 1800ms ease,
    filter 1800ms ease,
    transform 3200ms cubic-bezier(0.2, 0.72, 0.18, 1);
  will-change: transform, opacity;
}

.logo-wrap.is-assembled .logo-particle {
  opacity: 0;
  filter:
    contrast(1.08)
    brightness(1.02);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.logo-wrap.is-assembling .logo-particle {
  transition:
    opacity 300ms ease,
    filter 300ms ease,
    transform 300ms cubic-bezier(0.18, 0.9, 0.24, 1);
}

.logo-wrap.is-assembling .logo-particle {
  opacity: 1;
}

.logo-wrap.is-charging .logo-particle {
  opacity: 0.76;
  filter:
    contrast(1.14)
    brightness(1.18);
  transform:
    translate3d(
      calc(var(--scatter-x) * 0.28),
      calc(var(--scatter-y) * 0.28),
      calc(var(--scatter-z) * 0.18)
    )
    rotate(calc(var(--scatter-r) * 0.22))
    scale(1.04);
}

.logo-wrap.is-stable .logo-particle {
  transition: none;
  opacity: 0;
  filter:
    contrast(1.08)
    brightness(1.02);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.logo-wrap.is-long-chaos .logo-particle {
  opacity: 0.96;
  filter:
    contrast(1.12)
    brightness(1.08);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition:
    opacity 80ms linear,
    filter 80ms linear;
}

.label {
  margin: 0 0 10px;
  color: rgba(246, 243, 236, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.text {
  max-width: 460px;
  margin: 0 auto 0;
  color: rgba(246, 243, 236, 0.78);
  font-size: clamp(1.05rem, 2.8vw, 1.32rem);
  line-height: 1.7;
}

.video-player {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 28px auto 0;
  border: 1px solid rgba(174, 144, 255, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(174, 144, 255, 0.13), rgba(111, 132, 255, 0.065)),
    #000;
  box-shadow:
    0 0 48px rgba(174, 144, 255, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.5);
  will-change: box-shadow;
}

.video-player iframe,
.video-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.ours {
  margin: 20px 0 0;
  color: #c9a8ff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: accentColorFlow 10s ease-in-out infinite;
}

.visit-counter {
  position: fixed;
  right: 14px;
  top: 12px;
  z-index: 12;
  display: inline-flex;
  gap: 10px;
  color: rgba(246, 243, 236, 0.32);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.visit-counter b {
  color: rgba(201, 168, 255, 0.5);
  font-weight: 700;
}

.hero-social {
  position: absolute;
  right: clamp(12px, 3vw, 26px);
  bottom: clamp(12px, 3vw, 26px);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #f6f3ec;
  background:
    linear-gradient(145deg, rgba(111, 132, 255, 0.35), rgba(127, 255, 232, 0.12)),
    rgba(20, 18, 32, 0.82);
  border: 1px solid rgba(174, 144, 255, 0.45);
  box-shadow:
    0 0 22px rgba(201, 168, 255, 0.25),
    0 10px 28px rgba(0, 0, 0, 0.45);
  transition:
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  animation: socialFloat 5.2s ease-in-out infinite;
}

.hero-social a:nth-child(2) {
  animation-delay: 420ms;
}

.hero-social a:nth-child(3) {
  animation-delay: 840ms;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  outline: none;
  border-color: rgba(146, 172, 255, 0.75);
  color: #fff;
  box-shadow:
    0 0 32px rgba(201, 168, 255, 0.42),
    0 12px 36px rgba(0, 0, 0, 0.5);
  animation: none;
  transform: translateY(-2px) scale(1.04);
}

.hero-social a svg,
.hero-social a img {
  display: block;
}

.hero-social .telegram-fab svg {
  margin: 0 0 0 2px;
}

.hero-social .yandex-fab img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.matrix-text {
  text-shadow: 0 0 14px rgba(201, 168, 255, 0.18);
}

.matrix-text.is-matrixing {
  color: #c9a8ff;
  text-shadow:
    0 0 12px rgba(201, 168, 255, 0.54),
    0 0 30px rgba(127, 255, 232, 0.18);
}

.label.matrix-text.is-matrixing,
.text.matrix-text.is-matrixing,
.clip-title.matrix-text.is-matrixing,
.release-kicker.matrix-text.is-matrixing,
.release-title.matrix-text.is-matrixing,
.clip-panel-title.matrix-text.is-matrixing,
.release-subtitle.matrix-text.is-matrixing,
.clip-button.matrix-text.is-matrixing {
  animation: accentColorFlow 10s ease-in-out infinite;
}

.matrix-text.is-readable {
  text-shadow:
    0 0 18px rgba(246, 243, 236, 0.22),
    0 0 34px rgba(201, 168, 255, 0.24);
}

@keyframes neonDrift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(-1.5%, -1%, 0) rotate(0deg) scale(1);
  }
  50% {
    opacity: 0.62;
    transform: translate3d(1.5%, 1%, 0) rotate(6deg) scale(1.03);
  }
}

@keyframes auraHueShift {
  0%,
  100% {
    filter: blur(34px) hue-rotate(0deg) saturate(1);
  }
  50% {
    filter: blur(38px) hue-rotate(22deg) saturate(1.18);
  }
}

@keyframes accentColorFlow {
  0%,
  100% {
    color: #c9a8ff;
  }
  42% {
    color: #f0c7ff;
  }
  72% {
    color: #7fffe8;
  }
}

@keyframes scanlinesFloat {
  to {
    background-position: 0 28px;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 34px 110px rgba(0, 0, 0, 0.62),
      inset 0 0 92px rgba(183, 139, 255, 0.04);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.006);
    box-shadow:
      0 48px 134px rgba(0, 0, 0, 0.66),
      inset 0 0 124px rgba(201, 168, 255, 0.065);
  }
}

@keyframes borderColorFlow {
  0%,
  100% {
    border-color: rgba(201, 168, 255, 0.32);
  }
  45% {
    border-color: rgba(127, 255, 232, 0.28);
  }
  72% {
    border-color: rgba(240, 199, 255, 0.36);
  }
}

@keyframes heroGlossSweep {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate3d(-42%, 12%, 0) rotate(0.001deg);
  }
  66% {
    opacity: 0.75;
  }
  78% {
    opacity: 0;
    transform: translate3d(42%, -12%, 0) rotate(0.001deg);
  }
}

@keyframes mediaBreath {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.005);
  }
}

@keyframes mediaPulseGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    box-shadow:
      0 0 46px rgba(201, 168, 255, 0.12),
      0 24px 82px rgba(0, 0, 0, 0.42);
  }
  50% {
    filter: brightness(1.06) saturate(1.1);
    box-shadow:
      0 0 62px rgba(201, 168, 255, 0.2),
      0 0 34px rgba(127, 255, 232, 0.08),
      0 30px 92px rgba(0, 0, 0, 0.46);
  }
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 22px rgba(201, 168, 255, 0.25),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }
  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 30px rgba(201, 168, 255, 0.34),
      0 0 18px rgba(127, 255, 232, 0.08),
      0 12px 32px rgba(0, 0, 0, 0.48);
  }
}

@keyframes softBlink {
  0%,
  100% {
    opacity: 0.78;
    text-shadow: 0 0 16px rgba(201, 168, 255, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 28px rgba(127, 255, 232, 0.28);
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    animation: none;
  }

  .hero,
  .release-card,
  .clip-panel,
  .hero-social a {
    animation: none;
  }

  .topline {
    animation: accentColorFlow 12s ease-in-out infinite;
  }

  .page {
    min-height: 100svh;
    padding: 58px 14px 14px;
    place-items: start center;
    align-items: start;
  }

  .visit-counter {
    left: auto;
    right: 10px;
    top: 10px;
    transform: none;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    opacity: 0.72;
  }

  .hero-social {
    position: static;
    flex-direction: row;
    justify-content: center;
    order: 2;
    margin: 12px auto 0;
    gap: 8px;
  }

  .hero-social a {
    width: 46px;
    height: 46px;
  }

  .hero-social a svg,
  .hero-social .yandex-fab img {
    width: 24px;
    height: 24px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 14px 22px;
    border-radius: 32px;
    transform: none;
  }

  .hero > * {
    flex-shrink: 0;
  }

  .hero-media {
    order: 1;
  }

  .release-stage {
    order: 1;
    width: min(100%, 440px);
    border-radius: 32px;
  }

  .release-card,
  .clip-panel {
    --release-padding: 16px;
    --logo-top-gap: 18px;
    --logo-bottom-gap: 24px;
    grid-template-columns: 1fr;
    border-radius: 32px;
    text-align: center;
  }

  .release-card {
    padding: 0;
  }

  .clip-panel {
    padding: var(--release-padding);
  }

  .clip-panel-content {
    text-align: center;
  }

  .release-cover {
    max-width: 280px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .release-content {
    align-items: stretch;
  }

  .release-kicker {
    margin-top: 2px;
    letter-spacing: 0.22em;
  }

  .release-subtitle {
    margin-bottom: 14px;
  }

  .track-item {
    grid-template-columns: 46px 54px minmax(0, 1fr);
    min-height: 74px;
    gap: 12px;
    padding: 10px 12px 10px 10px;
    text-align: left;
  }

  .track-toggle {
    width: 46px;
    height: 46px;
  }

  .track-cover {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .clip-button {
    align-self: center;
  }

  .release-content .clip-button[data-show-clip] {
    align-self: center;
  }

  .logo-wrap {
    max-width: 100%;
  }

  .topline {
    order: 0;
    margin-bottom: 14px;
  }

  .hero-media + .label,
  .release-stage + .label {
    margin-top: 14px;
  }

  .label {
    order: 3;
  }

  .text {
    order: 4;
  }

  .ours {
    order: 5;
  }

  .topline,
  .label,
  .ours {
    letter-spacing: 0.18em;
  }

}

html[data-animation-quality="low"] body::before,
html[data-animation-quality="low"] body::after,
html[data-animation-quality="low"] .hero,
html[data-animation-quality="low"] .release-card,
html[data-animation-quality="low"] .clip-panel,
html[data-animation-quality="low"] .hero-social a,
html[data-animation-quality="frozen"] body::before,
html[data-animation-quality="frozen"] body::after,
html[data-animation-quality="frozen"] .hero,
html[data-animation-quality="frozen"] .release-card,
html[data-animation-quality="frozen"] .clip-panel,
html[data-animation-quality="frozen"] .hero-social a,
html[data-animation-quality="frozen"] .topline,
html[data-animation-quality="frozen"] .label,
html[data-animation-quality="frozen"] .ours {
  animation: none;
}

html[data-animation-quality="low"] .logo-particle,
html[data-animation-quality="frozen"] .logo-particle {
  transition:
    opacity 520ms ease,
    filter 520ms ease,
    transform 900ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

html[data-animation-quality="frozen"] .matrix-text.is-readable {
  text-shadow:
    0 0 14px rgba(246, 243, 236, 0.18),
    0 0 24px rgba(201, 168, 255, 0.16);
}

@media (max-width: 430px) and (max-height: 740px) {
  .page {
    padding: 40px 10px 10px;
  }

  .visit-counter {
    top: 8px;
    font-size: 0.54rem;
    gap: 7px;
  }

  .hero {
    padding: 12px 10px 14px;
    border-radius: 28px;
  }

  .topline {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .logo-wrap {
    max-width: 100%;
  }

  .hero-media {
    width: min(100%, 88%);
    margin-left: auto;
    margin-right: auto;
    border-radius: 26px;
  }

  .release-stage {
    width: min(100%, 94%);
    border-radius: 28px;
  }

  .release-card,
  .clip-panel {
    --release-padding: 12px;
    --logo-top-gap: 14px;
    --logo-bottom-gap: 18px;
    gap: 12px;
    border-radius: 28px;
  }

  .release-card {
    padding: 0;
  }

  .clip-panel {
    padding: var(--release-padding);
  }

  .release-cover {
    max-width: 210px;
    border-radius: 14px;
  }

  .release-title {
    font-size: clamp(1.9rem, 13vw, 3rem);
  }

  .track-list {
    gap: 8px;
  }

  .track-item {
    grid-template-columns: 38px 44px minmax(0, 1fr);
    min-height: 64px;
    gap: 9px;
    padding: 8px 10px 8px 8px;
    border-radius: 22px;
  }

  .track-toggle {
    width: 38px;
    height: 38px;
  }

  .track-cover {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .clip-button {
    margin-top: 12px;
    padding: 11px 14px;
    font-size: 0.68rem;
  }

  .label {
    margin-bottom: 6px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .text {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-media .video-player {
    border-radius: 0;
  }

  .clip-title {
    padding: 10px 12px 12px;
    font-size: 0.78rem;
    border-radius: 0 0 18px 18px;
  }

  .hero-media .logo-wrap {
    border-radius: 10px 10px 0 0;
  }

  .hero-media .logo-wrap img {
    border-radius: 8px 8px 0 0;
  }

  .hero-media + .label,
  .release-stage + .label {
    margin-top: 14px;
  }

  .ours {
    margin-top: 10px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
