:root {
  --bg-dark: #06020f;
  --bg-mid: #13072a;
  --gold: #ffd54a;
  --orange: #ff7a18;
  --hot: #ff315f;
  --electric: #2de2ff;
  --purple: #9c4dff;
  --green: #4eff9e;
  --white: #fff8ee;
  --glass: rgba(17, 8, 38, .72);
  --border: rgba(255, 255, 255, .15);
  --safe-top: max(8px, env(safe-area-inset-top));
  --safe-bottom: max(8px, env(safe-area-inset-bottom));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg-dark);
}

body {
  color: var(--white);
  font-family: var(--body);
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

button, input { font: inherit; }

button {
  color: inherit;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(156, 77, 255, .3), transparent 35%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, .018) 23px 24px),
    #070210;
  text-align: center;
  transition: opacity .55s ease, visibility .55s;
}

.loading-screen.done { opacity: 0; visibility: hidden; }

.loading-mark {
  font-size: 58px;
  filter: drop-shadow(0 0 20px rgba(255, 73, 31, .75));
  animation: loadingFlame .65s ease-in-out infinite alternate;
}

.loading-screen h1 {
  margin: 7px 0 0;
  font: 54px/1 var(--display);
  letter-spacing: 1.5px;
  color: var(--gold);
  text-shadow: 0 4px 0 #ac270b, 0 0 30px rgba(255, 113, 20, .75);
}

.loading-screen p { margin: 13px 0; letter-spacing: 3px; color: #e7d5ff; }

.loading-track {
  width: min(300px, 78vw);
  height: 8px;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.loading-track span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hot), var(--gold), var(--electric));
  box-shadow: 0 0 12px var(--hot);
  transition: width .3s ease;
}

.app {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 110%, #5a133a 0, transparent 43%),
    radial-gradient(circle at 20% 15%, rgba(37, 72, 173, .42), transparent 34%),
    linear-gradient(160deg, #080314 0%, #14072d 55%, #07010f 100%);
}

.app.is-loading { visibility: hidden; }

.stage-atmosphere,
.screen,
.screen-flash,
.countdown-overlay,
.announcement,
.modal { position: absolute; inset: 0; }

.stage-atmosphere { z-index: -1; overflow: hidden; }

.aurora {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  opacity: .24;
  filter: blur(70px);
  will-change: transform;
}

.aurora-one { left: -30%; top: 10%; background: #136cff; animation: driftOne 12s ease-in-out infinite alternate; }
.aurora-two { right: -32%; top: 28%; background: #f2177d; animation: driftTwo 10s ease-in-out infinite alternate; }

.spotlights { position: absolute; inset: -15% -10% 10%; overflow: hidden; }

.spotlights i {
  position: absolute;
  top: -8%;
  left: 50%;
  width: 24%;
  height: 110%;
  opacity: .16;
  transform-origin: 50% 0;
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,.82), rgba(45,226,255,.35) 42%, transparent 88%);
  mix-blend-mode: screen;
  animation: spotlightSweep 6s ease-in-out infinite alternate;
}

.spotlights i:nth-child(2) { left: 18%; background-color: rgba(255,49,95,.3); animation-delay: -2.8s; animation-duration: 7.4s; }
.spotlights i:nth-child(3) { left: 73%; background-color: rgba(255,213,74,.3); animation-delay: -4s; animation-duration: 8s; }
.spotlights i:nth-child(4) { left: 40%; opacity: .09; animation-delay: -1.1s; animation-duration: 5.2s; }

.laser-field { position: absolute; inset: 20% -15% 18%; opacity: .26; }

.laser-field i {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 75vw;
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(45,226,255,.9), transparent);
  box-shadow: 0 0 7px currentColor;
  animation: laserScan 7s linear infinite;
}

.laser-field i:nth-child(2) { color: var(--hot); animation-delay: -1.5s; }
.laser-field i:nth-child(3) { color: var(--gold); animation-delay: -3s; }
.laser-field i:nth-child(4) { color: var(--purple); animation-delay: -4.5s; }
.laser-field i:nth-child(5) { color: var(--green); animation-delay: -6s; }

.smoke {
  position: absolute;
  bottom: -10%;
  width: 55vw;
  height: 36vh;
  border-radius: 50%;
  background: rgba(174, 126, 255, .12);
  filter: blur(55px);
  animation: smokeMove 8s ease-in-out infinite alternate;
}

.smoke-one { left: -8%; }
.smoke-two { right: -8%; animation-delay: -4s; }

.screen {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .38s ease, transform .38s ease, visibility .38s;
}

.screen.active { visibility: visible; opacity: 1; transform: none; }

.glass-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(31, 17, 57, .82), rgba(7, 3, 18, .72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.menu-screen {
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  justify-items: center;
  padding: calc(var(--safe-top) + 7px) 14px calc(var(--safe-bottom) + 22px);
  overflow: hidden;
}

.menu-heading { z-index: 8; text-align: center; }

.eyebrow {
  margin: 0;
  color: var(--electric);
  font-size: clamp(10px, 2.5vw, 14px);
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(45,226,255,.6);
}

.title-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2px auto 0;
  padding: 0 10px;
  background: none;
  transform: rotate(-2deg);
}

.main-title {
  font: clamp(43px, 12vw, 92px)/.85 var(--display);
  letter-spacing: .018em;
  color: #fff0b1;
  -webkit-text-stroke: 1.5px #4d0b10;
  text-shadow:
    0 3px 0 #ff9f0a,
    0 7px 0 #c22910,
    0 11px 16px rgba(0,0,0,.7),
    0 0 28px rgba(255,115,22,.55);
}

.main-title.clash {
  margin-top: 5px;
  color: var(--hot);
  font-size: clamp(53px, 15vw, 118px);
  -webkit-text-stroke-color: #650d33;
  text-shadow: 0 4px 0 #ff9c1a, 0 8px 0 #8a1129, 0 13px 18px rgba(0,0,0,.78), 0 0 35px rgba(255,49,95,.68);
}

.tagline {
  display: inline-block;
  margin: 7px 0 0;
  padding: 3px 15px 4px;
  transform: skew(-9deg);
  border: 1px solid rgba(255,213,74,.5);
  background: rgba(5,2,15,.72);
  color: var(--gold);
  font-size: clamp(12px, 3vw, 18px);
  font-style: italic;
  letter-spacing: .18em;
  box-shadow: 0 0 18px rgba(255,213,74,.15);
}

.menu-stage {
  position: relative;
  align-self: stretch;
  width: min(760px, 96vw);
  min-height: 180px;
  z-index: 3;
}

.menu-burst {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 86%;
  aspect-ratio: 2.2 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,213,74,.34), rgba(156,77,255,.2) 38%, transparent 72%);
  filter: blur(5px);
  animation: menuBurst 1.2s ease-in-out infinite alternate;
}

.menu-character {
  position: absolute;
  bottom: -3%;
  width: 47%;
  height: 105%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  filter: drop-shadow(0 11px 13px rgba(0,0,0,.75)) drop-shadow(0 0 15px rgba(255,255,255,.12));
}

.menu-character img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.menu-girl { left: 0; transform-origin: center bottom; animation: enterGirl .9s cubic-bezier(.2,.9,.24,1.25) both, menuIdleGirl 2.15s .95s ease-in-out infinite; }
.menu-boy { right: 0; transform-origin: center bottom; animation: enterBoy .9s cubic-bezier(.2,.9,.24,1.25) both, menuIdleBoy 2.3s .95s ease-in-out infinite; }

.fighter-label {
  position: absolute;
  bottom: 8%;
  z-index: 2;
  padding: 2px 7px;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: rgba(5,2,12,.76);
  color: var(--gold);
  font-size: clamp(8px, 2.2vw, 13px);
  letter-spacing: .08em;
  white-space: nowrap;
}

.menu-boy .fighter-label { color: var(--electric); }

.menu-vs {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(-8deg);
  font: clamp(34px, 10vw, 70px)/1 var(--display);
  color: #fff;
  -webkit-text-stroke: 2px var(--hot);
  text-shadow: 0 0 15px var(--hot), 0 5px 0 #6c102b;
  animation: vsPulse .85s ease-in-out infinite alternate;
}

.equalizer { display: flex; align-items: flex-end; gap: 4px; }

.equalizer i {
  width: 5px;
  min-height: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--hot), var(--gold));
  animation: equalize .58s ease-in-out infinite alternate;
}

.equalizer i:nth-child(3n) { animation-delay: -.2s; }
.equalizer i:nth-child(3n + 1) { animation-delay: -.4s; }
.menu-equalizer { height: 18px; margin-top: -14px; opacity: .7; }

.menu-actions { z-index: 9; width: min(630px, 94vw); text-align: center; }

.btn {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .16s ease, filter .16s ease, background .16s ease;
  touch-action: manipulation;
}

.btn:active { transform: translateY(2px) scale(.97); }

.btn-start {
  position: relative;
  overflow: hidden;
  min-height: 53px;
  border: 2px solid #fff3a8;
  background: linear-gradient(115deg, #ff2b5f, #ff7b17 52%, #ffcf25);
  color: #22050b;
  font-size: clamp(16px, 4.3vw, 24px);
  box-shadow: 0 5px 0 #97132e, 0 0 28px rgba(255,79,38,.48), inset 0 1px 0 rgba(255,255,255,.7);
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.btn-start::after {
  content: "";
  position: absolute;
  inset: -80% -20%;
  transform: translateX(-70%) rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  animation: buttonShine 2.4s ease-in-out infinite;
}

.menu-actions > .btn-start { width: min(430px, 100%); animation: startPulse 1.05s ease-in-out infinite alternate; }

.secondary-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(12,6,30,.75);
  color: #f4eaff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 5px 16px rgba(0,0,0,.22);
  font-size: clamp(10px, 2.3vw, 13px);
}

.btn-ghost:hover { background: rgba(81,35,116,.72); filter: brightness(1.16); }
.menu-hint { z-index: 8; margin: 8px 0 0; color: rgba(255,255,255,.52); font-size: 11px; letter-spacing: .06em; }

.speaker-stack {
  position: absolute;
  bottom: 4%;
  z-index: 1;
  width: clamp(42px, 9vw, 90px);
  height: clamp(120px, 25vh, 260px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 7px;
  border: 2px solid #231c30;
  border-radius: 7px;
  background: linear-gradient(90deg, #09070c, #27202d, #08060a);
  box-shadow: 0 12px 30px #000;
  opacity: .82;
}

.speaker-left { left: 1%; transform: rotate(1deg); }
.speaker-right { right: 1%; transform: rotate(-1deg); }

.speaker-stack i {
  flex: 1;
  border: 5px solid #15111a;
  border-radius: 50%;
  background: radial-gradient(circle, #5b4863 0 16%, #1d1721 17% 44%, #09070c 45% 66%, #2d2432 68%);
  box-shadow: inset 0 0 10px #000;
  animation: speakerPulse .62s ease-in-out infinite alternate;
}

.crowd {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -18px;
  z-index: 7;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 14%;
  pointer-events: none;
}

.crowd i {
  position: relative;
  width: 7%;
  height: 65%;
  border-radius: 50% 50% 8px 8px;
  background: #030107;
  transform-origin: center bottom;
  animation: crowdBounce .72s ease-in-out infinite alternate;
}

.crowd i::before {
  content: "";
  position: absolute;
  left: 17%;
  top: -40%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
}

.crowd i::after {
  content: "";
  position: absolute;
  left: -45%;
  top: -28%;
  width: 190%;
  height: 24%;
  border-radius: 999px;
  background: inherit;
  transform: rotate(-10deg);
}

.crowd i:nth-child(2n) { height: 83%; animation-delay: -.3s; }
.crowd i:nth-child(3n) { height: 52%; animation-delay: -.5s; }

/* Game layout */
.game-screen {
  display: grid;
  grid-template-rows: auto auto auto minmax(120px, 1fr) auto;
  gap: 5px;
  padding: var(--safe-top) 8px var(--safe-bottom);
}

.game-hud {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr .72fr 1fr 34px;
  grid-template-rows: 15px 34px 17px;
  align-items: center;
  padding: 5px 6px 4px;
  border-radius: 15px 15px 8px 8px;
}

.brand-mini {
  grid-column: 1 / 5;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  letter-spacing: .18em;
}

.brand-mini b { color: var(--gold); }
.score-block, .time-block { display: flex; flex-direction: column; line-height: 1; }
.score-block span, .time-block span { color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .12em; }
.score-block strong, .time-block strong { margin-top: 3px; font: 22px/1 var(--display); font-variant-numeric: tabular-nums; }
.score-girl { padding-left: 5px; color: #ff84c4; }
.score-boy { align-items: flex-end; padding-right: 5px; color: var(--electric); }
.time-block { align-items: center; color: var(--gold); }
.time-block strong { font-size: 25px; }

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}

.pause-button { grid-column: 4; grid-row: 2; }
.hud-bottom { grid-column: 1 / 5; display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 10px; letter-spacing: .09em; }
.combo-display { color: var(--gold); }
.best-display { color: rgba(255,255,255,.58); }
.sound-mini { padding: 0; background: none; font-size: 13px; }

.meter-wrap {
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr 25px;
  align-items: center;
  gap: 7px;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .08em;
}

.fever-track {
  height: 8px;
  padding: 1px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.11);
}

.fever-track i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--hot), var(--gold));
  box-shadow: 0 0 10px var(--hot);
  transition: width .28s ease;
}

.rhythm-zone {
  z-index: 20;
  padding: 5px 9px 4px;
  border-radius: 9px;
}

.turn-and-move { display: flex; align-items: center; justify-content: center; gap: 12px; line-height: 1; }
.turn-and-move span { color: var(--electric); font-size: 13px; letter-spacing: .08em; }
.turn-and-move strong { color: var(--gold); font-size: 18px; text-shadow: 0 0 9px rgba(255,213,74,.45); }

.beat-lane {
  position: relative;
  width: 100%;
  height: 28px;
  margin-top: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0,0,0,.3);
}

.lane-line { position: absolute; left: 4%; right: 5%; top: 50%; height: 2px; background: linear-gradient(90deg, #5d426f, #7e628c); }
.lane-line::after { content: ""; position: absolute; inset: -3px 0; background: repeating-linear-gradient(90deg, transparent 0 7%, rgba(255,255,255,.28) 7.2% 7.7%); }
.timing-good, .timing-perfect { position: absolute; top: 4px; bottom: 4px; border-radius: 5px; }
.timing-good { left: 79%; width: 15%; background: rgba(45,226,255,.11); border: 1px solid rgba(45,226,255,.28); }
.timing-perfect { left: 84%; width: 6%; background: rgba(255,213,74,.23); border: 1px solid rgba(255,213,74,.65); }
.beat-dot { position: absolute; left: 4%; top: 50%; z-index: 2; transform: translate(-50%, -54%); color: var(--hot); font-size: 22px; text-shadow: 0 0 10px var(--hot); will-change: left, transform; }
.beat-dot.live { animation: dotThrob .35s ease-in-out infinite alternate; }
.beat-target { position: absolute; left: 87%; top: 50%; z-index: 3; transform: translate(-50%, -50%); font-size: 20px; filter: drop-shadow(0 0 8px rgba(255,213,74,.75)); }
.timing-help { margin: 0; text-align: center; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 600; letter-spacing: .06em; }

.performance-stage {
  position: relative;
  z-index: 4;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  perspective: 800px;
}

.performance-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 27% 60%, rgba(255,65,145,.22), transparent 31%),
    radial-gradient(ellipse at 73% 60%, rgba(45,226,255,.2), transparent 31%),
    linear-gradient(to bottom, transparent 54%, rgba(255,69,128,.1));
}

.character-light {
  position: absolute;
  bottom: 2%;
  width: 47%;
  height: 88%;
  border-radius: 50%;
  opacity: .5;
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: opacity .25s, transform .25s;
}

.light-girl { left: 1%; background: radial-gradient(ellipse, rgba(255,91,176,.42), transparent 68%); }
.light-boy { right: 1%; background: radial-gradient(ellipse, rgba(45,226,255,.38), transparent 68%); }

.dancer {
  position: absolute;
  z-index: 8;
  bottom: 10%;
  width: 48%;
  height: 91%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-origin: 50% 95%;
  will-change: transform;
}

.dancer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 5px rgba(0,0,0,.58)) drop-shadow(0 0 7px rgba(255,255,255,.13));
}

.dancer-girl { left: 2%; animation: girlIdle 2s ease-in-out infinite; }
.dancer-boy { right: 2%; animation: boyIdle 2.2s ease-in-out infinite; }
.dancer.dancing { animation: none; }

.crown {
  position: absolute;
  left: 50%;
  top: -12%;
  z-index: 4;
  font-size: clamp(35px, 9vw, 70px);
  opacity: 0;
  transform: translate(-50%, -120%);
  filter: drop-shadow(0 0 12px var(--gold));
}

.dancer.winner .crown { opacity: 1; animation: crownDrop .85s cubic-bezier(.2,1.15,.38,1) forwards; }
.dancer.winner { animation: victoryDance .85s ease-in-out infinite alternate; }
.dancer.friendly-loser { animation: friendlyClap .8s ease-in-out infinite alternate; }

.mass-text {
  position: absolute;
  top: 27%;
  z-index: 4;
  opacity: 0;
  font: clamp(30px, 8vw, 68px)/1 var(--display);
  color: var(--gold);
  -webkit-text-stroke: 1px #8e1825;
  text-shadow: 0 4px 0 #8e1825, 0 0 20px var(--hot);
}

.mass-text-girl { left: 5%; transform: rotate(-10deg); }
.mass-text-boy { right: 3%; transform: rotate(10deg); }
.performance-stage.mass-girl .mass-text-girl,
.performance-stage.mass-boy .mass-text-boy { animation: massWord .8s ease-out; }

.stage-floor {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -28%;
  height: 47%;
  z-index: 1;
  transform: rotateX(60deg);
  transform-origin: center top;
  border-top: 2px solid rgba(255,213,74,.62);
  background:
    repeating-linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.07) 8.2% 8.5%),
    repeating-linear-gradient(0deg, transparent 0 20%, rgba(255,49,95,.13) 20.5% 21%),
    linear-gradient(to bottom, rgba(114,42,132,.45), #08020d 70%);
  box-shadow: 0 -8px 38px rgba(255,49,95,.22);
}

.floor-rings { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.floor-rings i { position: absolute; bottom: 7%; width: 32%; height: 8%; border: 2px solid rgba(255,213,74,.35); border-radius: 50%; animation: floorPulse .7s ease-out infinite; }
.floor-rings i:first-child { left: 9%; }
.floor-rings i:nth-child(2) { right: 9%; animation-delay: -.25s; border-color: rgba(45,226,255,.38); }
.floor-rings i:nth-child(3) { left: 35%; animation-delay: -.45s; border-color: rgba(255,49,95,.34); }

.stage-equalizer { position: absolute; left: 9%; right: 9%; bottom: 12%; z-index: 2; justify-content: center; height: 26%; opacity: .25; }
.stage-equalizer i { width: 4%; max-width: 18px; background: linear-gradient(to top, var(--purple), var(--electric)); }
.game-crowd { z-index: 13; height: 12%; opacity: .95; }

.particle-layer, .global-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle-layer { z-index: 20; }

.particle {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  will-change: transform, opacity;
  animation: particleFly var(--life, 900ms) cubic-bezier(.1,.6,.2,1) forwards;
}

.floating-score {
  position: absolute;
  z-index: 25;
  font: clamp(22px, 6vw, 46px)/1 var(--display);
  color: var(--gold);
  -webkit-text-stroke: 1px #641220;
  text-shadow: 0 4px 0 #641220, 0 0 14px var(--hot);
  pointer-events: none;
  animation: scoreFloat .9s ease-out forwards;
}

.dance-controls {
  position: relative;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.dance-button {
  position: relative;
  min-height: 58px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(50,24,75,.95), rgba(13,6,30,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 0 #09030e, 0 0 15px rgba(156,77,255,.16);
  text-align: left;
  touch-action: manipulation;
  transition: transform .1s ease, filter .12s ease, border-color .12s ease;
}

.dance-button kbd {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  font: 10px var(--body);
}

.move-icon { align-self: end; font-size: 18px; line-height: 1; }
.dance-button strong { align-self: start; color: #fff; font-size: 14px; line-height: 1.1; letter-spacing: .06em; }
.dance-button::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--button-color, var(--purple)); box-shadow: 0 0 12px var(--button-color, var(--purple)); }
.step-button { --button-color: #ff5e30; }
.spin-button { --button-color: #a557ff; }
.jump-button { --button-color: #24d8ff; }
.mass-button { --button-color: #ffd43d; }
.dance-button:active, .dance-button.pressed { transform: translateY(3px) scale(.975); filter: brightness(1.35); }
.dance-button.rapid-active { border-color: var(--gold); animation: rapidButton .38s ease-in-out infinite alternate; }
.ripple { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.5); transform: scale(0); opacity: 0; pointer-events: none; }
.dance-button.rippling .ripple { animation: ripple .45s ease-out; }

/* Overlays, announcements, and results */
.announcement {
  z-index: 110;
  visibility: hidden;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}

.announcement.show { visibility: visible; }

.announcement span {
  max-width: 94vw;
  padding: 9px 19px;
  transform: rotate(-2deg);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 7px;
  background: rgba(6,2,14,.9);
  font: clamp(28px, 9vw, 78px)/1 var(--display);
  color: var(--gold);
  text-align: center;
  text-shadow: 0 4px 0 #8b1830, 0 0 20px var(--hot);
  box-shadow: 0 0 50px rgba(255,49,95,.25);
  animation: announceIn .58s cubic-bezier(.2,1.5,.35,1) both;
}

.announcement.perfect span { color: #fff5a8; border-color: var(--gold); }
.announcement.warning span { color: #fff; border-color: var(--hot); text-shadow: 0 4px 0 #681026, 0 0 23px var(--hot); }
.announcement.fever span { color: #fff; background: linear-gradient(100deg, #8c0738, #50107c, #004f76); animation: feverAnnounce .68s cubic-bezier(.2,1.4,.35,1) both; }
.announcement.mass span { color: #1b0612; background: var(--gold); border-color: white; text-shadow: 0 1px 0 white; }
.announcement.victory span { color: var(--gold); border-color: var(--gold); }

.screen-flash { z-index: 105; visibility: hidden; background: #fff; opacity: 0; pointer-events: none; }
.screen-flash.flash { visibility: visible; animation: flash .16s ease-out; }

.countdown-overlay {
  z-index: 120;
  visibility: hidden;
  display: grid;
  place-items: center;
  background: rgba(4,1,10,.76);
  backdrop-filter: blur(3px);
}

.countdown-overlay.show { visibility: visible; }
.countdown-overlay div { font: clamp(100px, 35vw, 260px)/1 var(--display); color: var(--gold); -webkit-text-stroke: 3px var(--hot); text-shadow: 0 8px 0 #72142c, 0 0 55px var(--hot); animation: countPop .75s ease-out; }

.modal {
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--safe-top) + 10px) 14px calc(var(--safe-bottom) + 10px);
  background: rgba(3,1,8,.8);
  backdrop-filter: blur(8px);
  transition: opacity .2s, visibility .2s;
}

.modal.open { visibility: visible; opacity: 1; }
.modal-card { position: relative; width: min(500px, 96vw); max-height: calc(100dvh - 30px); overflow: auto; padding: 25px 20px 20px; border-radius: 20px; text-align: center; }
.modal-card h2 { margin: 5px 0 8px; font: clamp(32px, 9vw, 52px)/1 var(--display); color: var(--gold); text-shadow: 0 3px 0 #80162a; }
.modal-close { position: absolute; right: 10px; top: 10px; z-index: 2; }
.modal-intro { margin: 0 auto 13px; max-width: 380px; color: #dfd2ec; font-weight: 600; }
.how-moves { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.how-moves span { padding: 9px 5px; border-radius: 10px; background: rgba(255,255,255,.07); }
.timing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 11px 0; }
.timing-grid div { display: flex; flex-direction: column; padding: 7px 4px; border-radius: 9px; background: rgba(255,255,255,.06); font-size: 13px; }
.timing-grid .perfect strong { color: var(--gold); }
.timing-grid .good strong { color: var(--electric); }
.timing-grid .miss strong { color: var(--hot); }
.how-list { margin: 0 0 16px; padding: 0; list-style: none; color: #e5d9f2; font-size: 13px; line-height: 1.7; }
.how-list b { color: var(--gold); }
.modal-card .btn-start { width: 100%; }

.trophy-big { font-size: 58px; filter: drop-shadow(0 0 16px var(--gold)); }
.record-list { margin: 16px 0; }
.record-list div { display: flex; justify-content: space-between; padding: 11px; border-bottom: 1px solid rgba(255,255,255,.1); }
.record-list dt { color: rgba(255,255,255,.6); }
.record-list dd { margin: 0; color: var(--gold); font-size: 21px; }
.pause-actions { display: grid; gap: 10px; margin-top: 20px; }

.result-screen { display: grid; place-items: center; padding: var(--safe-top) 12px var(--safe-bottom); overflow: hidden auto; }
.result-card { width: min(530px, 96vw); max-height: calc(100dvh - 18px); overflow: auto; padding: 17px 17px 19px; border-radius: 22px; text-align: center; }
.result-crown { height: 41px; margin: 0; font-size: 42px; line-height: 1; filter: drop-shadow(0 0 13px var(--gold)); animation: crownBob .75s ease-in-out infinite alternate; }
.result-card h2 { margin: 5px 0 0; font: clamp(38px, 11vw, 62px)/1 var(--display); color: #fff; text-shadow: 0 4px 0 #77142a, 0 0 20px var(--hot); }
.winner-text { margin: 5px 0 8px; color: var(--gold); font-size: clamp(19px, 5vw, 29px); letter-spacing: .05em; }
.grade-badge { width: 66px; height: 66px; display: grid; place-items: center; margin: 5px auto; border: 3px solid #fff1a0; border-radius: 50%; background: linear-gradient(145deg, var(--hot), #6c1ca6); font: 42px/1 var(--display); box-shadow: 0 0 22px rgba(255,49,95,.48); }
.grade-message { margin: 4px 0 10px; color: #f3d8ff; font-size: 13px; letter-spacing: .1em; }
.result-scores { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.result-scores div { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.07); }
.result-scores span, .result-stats dt { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .1em; }
.result-scores strong { color: var(--gold); font-size: 21px; }
.result-scores .total-result { grid-column: 1 / 3; border: 1px solid rgba(255,213,74,.25); }
.result-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 14px; margin: 10px 0; }
.result-stats div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.result-stats dd { margin: 0; color: #fff; }
.result-actions { display: grid; grid-template-columns: 1.3fr 1fr; gap: 7px; }
.result-actions .btn-start { grid-column: 1 / 3; }

/* Dance animation hooks */
.dancer-girl.dance-step { animation: girlStep .62s cubic-bezier(.36,.05,.25,1); }
.dancer-boy.dance-step { animation: boyStep .62s cubic-bezier(.36,.05,.25,1); }
.dancer-girl.dance-spin { animation: girlSpin .78s cubic-bezier(.2,.7,.3,1); }
.dancer-boy.dance-spin { animation: boySpin .78s cubic-bezier(.2,.7,.3,1); }
.dancer-girl.dance-jump { animation: girlJump .72s cubic-bezier(.3,.01,.25,1); }
.dancer-boy.dance-jump { animation: boyJump .75s cubic-bezier(.3,.01,.25,1); }
.dancer-girl.dance-mass { animation: girlMass .92s cubic-bezier(.2,.9,.25,1); z-index: 10; }
.dancer-boy.dance-mass { animation: boyMass .92s cubic-bezier(.2,.9,.25,1); z-index: 10; }
.dancer.reaction { animation: funnyReaction .45s ease-in-out; }

.app.shake-small { animation: shakeSmall .2s linear; }
.app.shake-medium { animation: shakeMedium .3s linear; }
.app.shake-heavy { animation: shakeHeavy .45s linear; }
.app.beat-pulse .performance-stage { animation: stageBeat .18s ease-out; }
.app.beat-pulse .speaker-stack i { transform: scale(1.08); }

.app.party-mode .spotlights i { animation-duration: 4s; opacity: .24; }
.app.party-mode .crowd i { animation-duration: .45s; }
.app.fever-mode { box-shadow: inset 0 0 55px rgba(255,49,95,.65), inset 0 0 90px rgba(45,226,255,.28); }
.app.fever-mode .laser-field { opacity: .68; }
.app.fever-mode .spotlights i { opacity: .35; animation-duration: 2.8s; }
.app.fever-mode .crowd i { animation-duration: .3s; }
.app.fever-mode .dance-button { animation: feverButton .75s ease-in-out infinite alternate; }
.app.mass-mode::after,
.app.kuthu-power::after,
.app.secret-mode::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 90;
  border: 3px solid transparent;
  border-radius: 18px;
  pointer-events: none;
  animation: edgeGlow .5s linear infinite alternate;
}
.app.kuthu-power { animation: hueParty 1.1s linear infinite; }
.app.kuthu-power .dancer img { filter: drop-shadow(0 0 14px var(--gold)) drop-shadow(0 0 24px var(--electric)); }
.app.disco-blast { animation: hueParty .45s linear infinite; }
.app.freeze-event .dancer, .app.freeze-event .crowd i, .app.freeze-event .equalizer i { animation-play-state: paused !important; }
.app.secret-mode .spotlights i { opacity: .5; animation-duration: 1.2s; }
.app.secret-mode .menu-character { animation: secretDance .45s ease-in-out infinite alternate; }
.app.paused .game-screen * { animation-play-state: paused !important; }

@keyframes loadingFlame { to { transform: translateY(-7px) scale(1.1) rotate(4deg); } }
@keyframes driftOne { to { transform: translate(40vw, -12vh) scale(1.15); } }
@keyframes driftTwo { to { transform: translate(-35vw, 10vh) scale(.9); } }
@keyframes spotlightSweep { from { transform: rotate(-25deg); } to { transform: rotate(28deg); } }
@keyframes laserScan { from { transform: rotate(12deg) scaleX(.85); } to { transform: rotate(372deg) scaleX(1.1); } }
@keyframes smokeMove { to { transform: translate(18vw, -5vh) scale(1.15); opacity: .4; } }
@keyframes enterGirl { from { transform: translateX(-120%) rotate(-12deg); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes enterBoy { from { transform: translateX(120%) rotate(12deg); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes menuIdleGirl { 50% { transform: translateY(-5px) rotate(-1deg); } }
@keyframes menuIdleBoy { 50% { transform: translateY(-6px) rotate(1deg); } }
@keyframes menuBurst { to { transform: translateX(-50%) scale(1.08); opacity: .75; } }
@keyframes vsPulse { to { transform: translate(-50%, -50%) rotate(4deg) scale(1.13); } }
@keyframes equalize { from { height: 18%; } to { height: 100%; } }
@keyframes buttonShine { 0%, 35% { transform: translateX(-80%) rotate(22deg); } 70%, 100% { transform: translateX(90%) rotate(22deg); } }
@keyframes startPulse { to { transform: scale(1.035); filter: brightness(1.11); } }
@keyframes speakerPulse { to { transform: scale(.94); filter: brightness(1.2); } }
@keyframes crowdBounce { to { transform: translateY(-6px) rotate(2deg); } }
@keyframes dotThrob { to { transform: translate(-50%, -54%) scale(1.2); } }
@keyframes girlIdle { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-3px) rotate(-.6deg); } }
@keyframes boyIdle { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(.7deg); } }
@keyframes floorPulse { from { transform: scale(.86); opacity: .65; } to { transform: scale(1.15); opacity: 0; } }
@keyframes particleFly { from { transform: translate(0,0) rotate(0) scale(.7); opacity: 1; } to { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(1.15); opacity: 0; } }
@keyframes scoreFloat { 0% { transform: translate(-50%, 0) scale(.6) rotate(-5deg); opacity: 0; } 20% { opacity: 1; transform: translate(-50%, -12px) scale(1.12) rotate(2deg); } 100% { transform: translate(-50%, -75px) scale(.92); opacity: 0; } }
@keyframes ripple { from { transform: scale(0); opacity: .7; } to { transform: scale(9); opacity: 0; } }
@keyframes rapidButton { to { transform: scale(1.04); filter: brightness(1.6); box-shadow: 0 0 23px var(--gold); } }
@keyframes announceIn { 0% { transform: scale(.3) rotate(-8deg); opacity: 0; } 65% { transform: scale(1.1) rotate(2deg); } 100% { transform: scale(1) rotate(-2deg); opacity: 1; } }
@keyframes feverAnnounce { 0% { transform: scale(2.2) rotate(-6deg); opacity: 0; } 100% { transform: scale(1) rotate(-1deg); opacity: 1; } }
@keyframes flash { 0% { opacity: .95; } 100% { opacity: 0; } }
@keyframes countPop { 0% { transform: scale(.25) rotate(-12deg); opacity: 0; } 55% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(.8); opacity: 0; } }
@keyframes crownBob { to { transform: translateY(-7px) rotate(4deg); } }
@keyframes crownDrop { to { transform: translate(-50%, 0) rotate(4deg); } }
@keyframes massWord { 0% { opacity: 0; transform: scale(.25) rotate(-12deg); } 45% { opacity: 1; transform: scale(1.15) rotate(4deg); } 100% { opacity: 0; transform: scale(.9); } }

@keyframes girlStep { 0%,100% { transform: none; } 24% { transform: translateX(-10%) rotate(-4deg) scaleY(.98); } 54% { transform: translateX(9%) rotate(5deg) scaleY(1.02); } 78% { transform: translateX(-3%) rotate(-2deg); } }
@keyframes boyStep { 0%,100% { transform: none; } 22% { transform: translateX(11%) rotate(4deg) skewY(-1deg); } 52% { transform: translateX(-10%) rotate(-5deg) scale(1.02); } 76% { transform: translateX(4%) rotate(2deg); } }
@keyframes girlSpin { 0% { transform: none; } 35% { transform: rotateY(180deg) rotate(6deg) scale(.88); } 72% { transform: rotateY(360deg) rotate(-4deg) scale(1.05); } 100% { transform: rotateY(360deg); } }
@keyframes boySpin { 0% { transform: none; } 52% { transform: rotateY(-300deg) rotate(-4deg) scale(.9); } 78% { transform: rotateY(-360deg) translateY(-5px) scale(1.05); } 100% { transform: rotateY(-360deg); } }
@keyframes girlJump { 0%,100% { transform: none; } 12% { transform: translateY(4px) scaleY(.94); } 45% { transform: translateY(-19%) rotate(-3deg) scaleY(1.03); } 72% { transform: translateY(-5%); } 88% { transform: translateY(3px) scaleY(.9) scaleX(1.06); } }
@keyframes boyJump { 0%,100% { transform: none; } 12% { transform: translateY(5px) scaleY(.92); } 43% { transform: translateY(-24%) rotate(4deg) scaleY(1.04); } 72% { transform: translateY(-6%); } 89% { transform: translateY(4px) scaleY(.88) scaleX(1.07); } }
@keyframes girlMass { 0%,100% { transform: none; } 25% { transform: translateX(-4%) rotate(-4deg) scale(1.04); } 48%,77% { transform: translateX(4%) rotate(3deg) scale(1.14); } }
@keyframes boyMass { 0%,100% { transform: none; } 25% { transform: translateX(4%) rotate(4deg) scale(1.05); } 48%,77% { transform: translateX(-3%) rotate(-2deg) scale(1.16); } }
@keyframes funnyReaction { 0%,100% { transform: none; } 22% { transform: rotate(-5deg) translateX(-3px); } 44% { transform: rotate(5deg) translateX(3px); } 66% { transform: rotate(-3deg); } }
@keyframes victoryDance { to { transform: translateY(-10px) rotate(3deg) scale(1.05); } }
@keyframes friendlyClap { to { transform: translateY(-4px) rotate(-1.5deg) scale(.98); } }
@keyframes shakeSmall { 25% { transform: translateX(-2px); } 50% { transform: translateX(2px); } 75% { transform: translateX(-1px); } }
@keyframes shakeMedium { 20% { transform: translate(-4px,2px); } 40% { transform: translate(4px,-2px); } 60% { transform: translate(-3px,-1px); } 80% { transform: translate(3px,1px); } }
@keyframes shakeHeavy { 15% { transform: translate(-7px,3px) rotate(-.3deg); } 30% { transform: translate(7px,-4px) rotate(.3deg); } 45% { transform: translate(-5px,-2px); } 60% { transform: translate(5px,3px); } 75% { transform: translate(-3px,1px); } }
@keyframes stageBeat { 50% { filter: brightness(1.32); transform: scale(1.005); } }
@keyframes feverButton { to { filter: brightness(1.25); border-color: rgba(255,213,74,.52); } }
@keyframes edgeGlow { from { border-color: var(--hot); box-shadow: inset 0 0 18px var(--hot), 0 0 18px var(--hot); } to { border-color: var(--electric); box-shadow: inset 0 0 28px var(--electric), 0 0 25px var(--purple); } }
@keyframes hueParty { to { filter: hue-rotate(360deg); } }
@keyframes secretDance { from { transform: translateY(-5px) rotate(-5deg); } to { transform: translateY(4px) rotate(5deg); } }

@media (min-width: 680px) {
  .menu-heading { padding-top: 10px; }
  .game-screen { grid-template-columns: minmax(0, 1fr); right: auto; width: min(960px, 100%); max-width: 960px; left: 50%; transform: translateX(-50%) scale(1.02); }
  .game-screen.active { transform: translateX(-50%); }
  .dance-controls { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dance-button { min-height: 67px; }
  .performance-stage { min-height: 280px; }
  .dancer { width: 41%; }
  .dancer-girl { left: 7%; }
  .dancer-boy { right: 7%; }
  .game-hud { grid-template-columns: 1fr .55fr 1fr 40px; }
  .score-block strong { font-size: 27px; }
  .rhythm-zone { padding-inline: 20px; }
}

@media (orientation: landscape) and (max-height: 750px) {
  .menu-screen { grid-template-columns: .9fr 1.1fr; grid-template-rows: 1fr auto; padding-inline: 4vw; }
  .menu-heading { align-self: end; }
  .menu-stage { grid-column: 2; grid-row: 1 / 3; width: 50vw; height: 78vh; }
  .menu-actions { grid-column: 1; grid-row: 2; width: 44vw; align-self: start; }
  .menu-equalizer, .menu-hint { display: none; }
  .main-title { font-size: clamp(42px, 6vw, 72px); }
  .main-title.clash { font-size: clamp(52px, 8vw, 92px); }
  .speaker-stack { display: none; }
  .game-screen { grid-template-columns: minmax(320px, 1fr) minmax(300px, .72fr); grid-template-rows: auto auto minmax(0, 1fr); width: min(1180px, 100%); max-width: 1180px; gap: 6px; }
  .game-hud { grid-column: 1 / 3; }
  .meter-wrap { grid-column: 1 / 3; }
  .rhythm-zone { grid-column: 2; grid-row: 3; align-self: start; margin-bottom: 118px; }
  .performance-stage { grid-column: 1; grid-row: 3; min-height: 0; height: 100%; }
  .dance-controls { grid-column: 2; grid-row: 3; align-self: end; grid-template-columns: repeat(2, 1fr); }
  .dancer { height: 98%; bottom: 4%; }
  .crowd { height: 16%; }
}

@media (max-width: 390px) {
  .menu-screen { padding-inline: 8px; }
  .secondary-actions { gap: 4px; }
  .btn-ghost { padding-inline: 7px; }
  .fighter-label { bottom: 4%; }
  .game-screen { padding-inline: 5px; }
  .turn-and-move { gap: 8px; }
  .turn-and-move span { font-size: 11px; }
  .turn-and-move strong { font-size: 16px; }
  .dance-button { min-height: 55px; padding-inline: 8px; grid-template-columns: 27px 1fr; }
  .dance-button strong { font-size: 12px; }
}

@media (max-height: 690px) and (orientation: portrait) {
  .menu-screen { grid-template-rows: auto minmax(145px, 1fr) auto auto; }
  .main-title { font-size: clamp(38px, 10vw, 55px); }
  .main-title.clash { font-size: clamp(48px, 13vw, 68px); }
  .tagline { margin-top: 4px; }
  .fighter-label { display: none; }
  .menu-equalizer { display: none; }
  .menu-actions > .btn-start { min-height: 47px; }
  .secondary-actions { margin-top: 8px; }
  .btn { min-height: 40px; padding-block: 8px; }
  .menu-hint { display: none; }
  .game-screen { gap: 3px; }
  .game-hud { grid-template-rows: 12px 29px 15px; padding-block: 3px; }
  .score-block strong { font-size: 19px; }
  .time-block strong { font-size: 21px; }
  .icon-button { width: 30px; height: 30px; }
  .meter-wrap { min-height: 23px; padding-block: 2px; }
  .rhythm-zone { padding-block: 3px; }
  .beat-lane { height: 25px; }
  .timing-help { display: none; }
  .dance-button { min-height: 50px; }
  .move-icon { font-size: 15px; }
}

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