:root {
  color-scheme: dark;
  --white: #f5f5f5;
  --soft: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.46);
  --glass: rgba(70, 70, 70, 0.36);
  --glass-strong: rgba(22, 22, 22, 0.74);
  --line: rgba(255, 255, 255, 0.18);
  --pink: #ff4f91;
  --purple: #8d49ff;
  --red: #ff174f;
  --ice: #e9f8ff;
  --x: 50vw;
  --y: 50vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: #050505;
  font-family: "Rajdhani", "Space Grotesk", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(transparent 0 50%, rgba(255, 255, 255, 0.025) 50% 100%),
    linear-gradient(90deg, rgba(255, 23, 79, 0.03), transparent 18%, transparent 82%, rgba(141, 73, 255, 0.04));
  background-size: 100% 4px, 100% 100%;
  opacity: 0.42;
  mix-blend-mode: screen;
}

body::after {
  background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.11), transparent 12rem);
  opacity: 0.7;
  transition: opacity 180ms ease;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.74);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cursor-glow::before {
  content: "";
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle, rgba(255, 79, 145, 0.09), transparent 62%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  opacity: 0.62;
}

.star-canvas {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.enter-screen {
  position: fixed;
  inset: 12px;
  z-index: 10;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 28%, rgba(255, 255, 255, 0.045) 52%, transparent 74%),
    radial-gradient(circle at 43% 46%, rgba(255, 255, 255, 0.13), transparent 17%),
    radial-gradient(circle at 38% 58%, rgba(255, 255, 255, 0.08), transparent 11%),
    radial-gradient(circle at 4% 6%, rgba(255, 255, 255, 0.09), transparent 5%),
    #020202;
  opacity: 1;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.enter-screen span {
  position: relative;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 800;
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  animation: clickPulse 1.8s ease-in-out infinite;
}

.enter-screen span::before,
.enter-screen span::after {
  content: "click";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.enter-screen span::before {
  color: var(--pink);
  transform: translate(-1px, 0);
  clip-path: inset(0 0 48% 0);
}

.enter-screen span::after {
  color: var(--ice);
  transform: translate(1px, 0);
  clip-path: inset(50% 0 0 0);
}

body.entered .enter-screen {
  visibility: hidden;
  opacity: 0;
}

.scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.05) 44%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.013) 0 1px, transparent 1px 6px);
  background-size: 240% 100%, 100% 100%, 100% 100%;
  opacity: 0.44;
  mix-blend-mode: screen;
  animation: lightSweep 7s ease-in-out infinite;
}

.backdrop,
.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.backdrop {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.8)),
    url("assets/anzor-hero.png") center / cover no-repeat;
  filter: grayscale(1) contrast(1.55) brightness(0.3) saturate(0.55);
  transform: scale(1.015);
}

.shade {
  z-index: -1;
  background:
    radial-gradient(circle at 51% 42%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 50% 46%, rgba(141, 73, 255, 0.14), transparent 10%),
    radial-gradient(circle at 50% 74%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9));
}

.sound-btn,
.options-toggle {
  position: fixed;
  z-index: 6;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.075)),
    rgba(0, 0, 0, 0.38);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 26px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sound-btn {
  top: 24px;
  left: 24px;
}

.options {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 7;
}

.options-toggle {
  position: relative;
  top: auto;
  left: auto;
}

.sound-btn:hover,
.options-toggle:hover,
.copy-btn:hover,
.play-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
}

.sound-btn:hover,
.options-toggle:hover,
.options.is-open .options-toggle {
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 34px rgba(255, 255, 255, 0.18);
}

.options-panel {
  position: absolute;
  top: 56px;
  right: 0;
  width: min(254px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(12, 12, 12, 0.82);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.options.is-open .options-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.option-volume {
  min-height: 44px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 6px;
}

.option-volume .icon {
  width: 18px;
  height: 18px;
}

.option-volume input {
  width: 100%;
  accent-color: var(--pink);
}

.option-volume strong {
  color: #fff;
  font-size: 0.84rem;
  text-align: right;
}

.option-row {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.option-row.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
}

.option-row .icon {
  width: 16px;
  height: 16px;
}

.option-row span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.option-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px rgba(141, 73, 255, 0.9);
}

.option-cube {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.profile {
  position: relative;
  z-index: 3;
  width: min(520px, calc(100vw - 34px));
  min-height: 360px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 34px 22px 52px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 180ms ease;
  animation: profileFloat 6.8s ease-in-out infinite;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 72px 36px 36px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.23), transparent 47%),
    radial-gradient(circle, rgba(255, 23, 79, 0.16), transparent 59%),
    radial-gradient(circle, rgba(141, 73, 255, 0.16), transparent 70%);
  filter: blur(26px);
  opacity: 0.9;
  transform: translateY(10px);
  animation: haloBreath 4.6s ease-in-out infinite;
}

.profile::after {
  content: "";
  position: absolute;
  inset: 96px 74px 70px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.52;
}

.decor {
  position: absolute;
  left: 60px;
  top: 74px;
  width: 150px;
  height: 110px;
  pointer-events: none;
}

.bubble {
  position: absolute;
  left: 0;
  top: 10px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #efefef;
  font-size: 0.58rem;
  font-weight: 900;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.45),
    0 0 26px rgba(255, 23, 79, 0.18);
  animation: stickerBob 3.2s ease-in-out infinite;
}

.heart {
  position: absolute;
  color: var(--pink);
  font-size: 2.15rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 79, 145, 0.7);
  animation: heartBeat 2.4s ease-in-out infinite;
}

.h1 {
  left: -3px;
  top: 60px;
  transform: rotate(-18deg);
}

.h2 {
  left: 34px;
  top: 48px;
  font-size: 1.2rem;
  transform: rotate(16deg);
}

.h3 {
  left: 74px;
  top: 30px;
  transform: rotate(12deg);
}

.rifle {
  position: absolute;
  left: 45px;
  top: 45px;
  width: 104px;
  height: 36px;
  transform: rotate(-35deg);
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.88))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.2));
}

.rifle i {
  position: absolute;
  display: block;
  background: #f4f4f4;
}

.rifle .body {
  left: 30px;
  top: 13px;
  width: 39px;
  height: 8px;
  border-radius: 2px;
}

.rifle .barrel {
  left: 65px;
  top: 15px;
  width: 42px;
  height: 3px;
}

.rifle .stock {
  left: 8px;
  top: 8px;
  width: 27px;
  height: 15px;
  border-radius: 3px 0 0 10px;
  transform: skewX(-18deg);
}

.rifle::before,
.rifle::after {
  content: "";
  position: absolute;
  background: #f4f4f4;
}

.rifle::before {
  left: 42px;
  top: 20px;
  width: 8px;
  height: 19px;
  border-radius: 3px;
  transform: rotate(-14deg);
}

.rifle::after {
  left: 54px;
  top: 21px;
  width: 13px;
  height: 12px;
  border: 2px solid #f4f4f4;
  border-top: 0;
  background: transparent;
  border-radius: 0 0 10px 10px;
}

.identity {
  margin-top: 24px;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.62),
    0 0 32px rgba(255, 255, 255, 0.14);
}

.avatar {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 35% 30%, #2d2d2d, #020202 67%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.16),
    0 0 52px rgba(141, 73, 255, 0.16);
  font-size: 1.7rem;
  font-weight: 900;
}

.name-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 2.15rem);
  line-height: 1;
  font-weight: 900;
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.78),
    0 0 35px rgba(141, 73, 255, 0.42),
    0 0 62px rgba(255, 23, 79, 0.22);
}

h1::before,
h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

h1::before {
  color: var(--pink);
  transform: translateX(-2px);
}

h1::after {
  color: var(--ice);
  transform: translateX(2px);
}

body.music-playing h1::before {
  animation: glitchTop 2.4s steps(2, end) infinite;
}

body.music-playing h1::after {
  animation: glitchBottom 2.1s steps(2, end) infinite;
}

.gem {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 16px rgba(141, 73, 255, 0.9);
}

.identity p {
  margin: 7px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.78rem, 2.8vw, 0.95rem);
  white-space: nowrap;
}

.mini-card,
.track-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.046)),
    var(--glass-strong);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mini-card::before,
.track-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.mini-card:hover,
.track-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)), var(--glass-strong);
}

.mini-card:hover::before,
.track-card:hover::before {
  opacity: 1;
  animation: cardShine 900ms ease forwards;
}

.mini-card {
  width: min(230px, 100%);
  min-height: 68px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  padding: 8px;
  text-align: left;
}

.mini-avatar,
.cover {
  display: grid;
  place-items: center;
  color: #fff;
  background: #050505;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.08);
}

.mini-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.mini-card strong,
.mini-card span,
.track-card strong,
.track-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card strong,
.track-card strong {
  color: #fff;
  font-size: 0.83rem;
}

.mini-card span,
.track-card span {
  color: var(--soft);
  font-size: 0.72rem;
}

.copy-btn,
.play-chip {
  border: 0;
  color: #111;
  background:
    radial-gradient(circle at 35% 25%, #fff, #f0f0f0 52%, #cfcfcf);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 24px rgba(255, 255, 255, 0.12);
}

.copy-btn {
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
}

.copy-btn .icon {
  width: 15px;
  height: 15px;
}

.track-card {
  width: min(318px, 100%);
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px 34px;
  align-items: center;
  gap: 11px;
  padding: 8px;
  text-align: left;
}

.cover {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.cover::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 120deg, transparent, rgba(255, 255, 255, 0.32), transparent 35%);
  opacity: 0;
}

body.music-playing .cover::after {
  opacity: 1;
  animation: spinCover 4s linear infinite;
}

.mini-eq {
  height: 30px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
}

.mini-eq span {
  width: 3px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, var(--pink));
  opacity: 0.35;
}

body.music-playing .mini-eq span {
  opacity: 0.9;
  animation: eqBounce 760ms ease-in-out infinite;
}

body.music-playing .mini-eq span:nth-child(2) {
  animation-delay: 110ms;
}

body.music-playing .mini-eq span:nth-child(3) {
  animation-delay: 220ms;
}

body.music-playing .mini-eq span:nth-child(4) {
  animation-delay: 60ms;
}

body.no-glow .shade {
  background:
    radial-gradient(circle at 50% 74%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9));
}

body.no-glow .profile::before,
body.no-glow .heart,
body.no-glow .gem,
body.no-glow .rifle {
  filter: none;
  box-shadow: none;
  text-shadow: none;
  opacity: 0.78;
}

body.no-snow .star-canvas {
  opacity: 0;
}

.play-chip {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
}

.play-chip .icon {
  width: 13px;
  height: 13px;
}

.views {
  position: absolute;
  left: 74px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(255, 255, 255, 0.08);
}

.views .icon {
  width: 17px;
  height: 17px;
}

.sound-btn .icon {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 12;
  max-width: min(340px, calc(100vw - 36px));
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(20, 20, 20, 0.82);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spinCover {
  to {
    transform: rotate(360deg);
  }
}

@keyframes clickPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes lightSweep {
  0%,
  100% {
    background-position: 140% 0, 0 0, 0 0;
  }

  50% {
    background-position: -80% 0, 0 0, 0 0;
  }
}

@keyframes profileFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@keyframes haloBreath {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(10px) scale(0.94);
  }

  50% {
    opacity: 1;
    transform: translateY(6px) scale(1.06);
  }
}

@keyframes stickerBob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-5px) rotate(4deg);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.12;
  }
}

@keyframes cardShine {
  to {
    transform: translateX(85%);
  }
}

@keyframes eqBounce {
  0%,
  100% {
    height: 8px;
  }

  50% {
    height: 25px;
  }
}

@keyframes glitchTop {
  0%,
  88%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
  }

  90% {
    opacity: 0.8;
    clip-path: inset(0 0 58% 0);
  }

  92% {
    opacity: 0.35;
    clip-path: inset(0 0 22% 0);
  }
}

@keyframes glitchBottom {
  0%,
  82%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
  }

  84% {
    opacity: 0.7;
    clip-path: inset(42% 0 0 0);
  }

  86% {
    opacity: 0.3;
    clip-path: inset(62% 0 0 0);
  }
}

@media (max-width: 650px) {
  .scene {
    padding: 16px;
  }

  .sound-btn {
    top: 16px;
    left: 16px;
  }

  .options {
    top: 16px;
    right: 16px;
  }

  .profile {
    min-height: 430px;
    padding-inline: 12px;
  }

  .decor {
    left: 24px;
    top: 58px;
    transform: scale(0.78);
    transform-origin: left top;
  }

  .identity {
    margin-top: 78px;
  }

  .mini-card {
    width: min(238px, 100%);
  }

  .track-card {
    width: min(310px, 100%);
    grid-template-columns: 48px minmax(0, 1fr) 24px 34px;
  }

  .views {
    left: 38px;
    bottom: 28px;
  }

}

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