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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  -webkit-tap-highlight-color: transparent;
  font-family: "Chiron GoRound TC", sans-serif;
}

body.is-preloading {
  overflow: hidden;
}
body.is-preloading .game-app {
  visibility: hidden;
  pointer-events: none;
}

.game-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
  box-sizing: border-box;
  background: radial-gradient(ellipse 80% 55% at 50% 42%, rgba(0, 232, 255, 0.14) 0%, transparent 62%), linear-gradient(180deg, #061220 0%, #0a1628 48%, #030a14 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.game-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.game-preloader__frame {
  position: relative;
  width: min(100%, 360px);
  padding: clamp(28px, 8vw, 40px) clamp(20px, 6vw, 28px) clamp(24px, 6.5vw, 32px);
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(0, 232, 255, 0.45);
  background: rgba(0, 14, 32, 0.72);
  box-shadow: inset 0 0 32px rgba(0, 232, 255, 0.1), 0 0 28px rgba(0, 232, 255, 0.22);
}
.game-preloader__frame::before, .game-preloader__frame::after {
  content: "";
  position: absolute;
  width: clamp(18px, 5.5vw, 26px);
  height: clamp(18px, 5.5vw, 26px);
  border: 2px solid #7df9ff;
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 232, 255, 0.55);
}
.game-preloader__frame::before {
  top: clamp(8px, 2.2vw, 12px);
  left: clamp(8px, 2.2vw, 12px);
  border-right: none;
  border-bottom: none;
}
.game-preloader__frame::after {
  right: clamp(8px, 2.2vw, 12px);
  bottom: clamp(8px, 2.2vw, 12px);
  border-left: none;
  border-top: none;
}
.game-preloader__logo {
  display: block;
  width: clamp(120px, 38vw, 180px);
  height: auto;
  margin: 0 auto clamp(12px, 3.5vw, 18px);
  filter: drop-shadow(0 0 12px rgba(0, 232, 255, 0.35));
}
.game-preloader__title {
  margin: 0 0 clamp(6px, 1.8vw, 10px);
  font-size: clamp(18px, 5.5vw, 26px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 clamp(1px, 0.1vw, 4px) clamp(1px, 0.1vw, 4px) rgb(0, 0, 0);
}
.game-preloader__subtitle {
  margin: 0 0 clamp(18px, 5vw, 24px);
  font-size: clamp(10px, 3vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #7df9ff;
  text-shadow: 0 0 10px rgba(0, 232, 255, 0.5);
}
.game-preloader__status {
  margin: 0 0 clamp(10px, 2.8vw, 14px);
  font-size: clamp(12px, 3.4vw, 15px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  min-height: 1.4em;
}
.game-preloader__bar {
  position: relative;
  width: 100%;
  height: clamp(8px, 2.2vw, 10px);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 232, 255, 0.12);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.45);
}
.game-preloader__bar-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 232, 255, 0.55) 0%, #7df9ff 55%, #fff 100%);
  box-shadow: 0 0 14px rgba(0, 232, 255, 0.75);
  transition: width 0.22s ease-out;
}
.game-preloader__percent {
  margin: clamp(8px, 2.2vw, 12px) 0 0;
  font-size: clamp(22px, 7vw, 32px);
  font-weight: 900;
  color: #7df9ff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(0, 232, 255, 0.65);
}

html[lang=en] .game-preloader__title {
  font-size: clamp(14px, 4.2vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}
html[lang=en] .game-preloader__subtitle {
  display: none;
}

.game-app {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  height: 100dvh;
  height: 100svh;
  overflow: hidden;
  --screen-transition-ms: 780;
}
.game-app.is-transitioning {
  pointer-events: none;
}
.game-app.is-transitioning .game-screen * {
  animation-play-state: paused !important;
}

.game-screen {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(5%, 0, 0);
  z-index: 1;
  contain: layout style paint;
  backface-visibility: hidden;
}
.game-screen:not(.is-active):not(.is-entering):not(.is-leaving) * {
  animation-play-state: paused !important;
}
.game-screen.is-active, .game-screen.is-entering {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.game-screen.is-active {
  pointer-events: auto;
  z-index: 2;
}
.game-screen.is-entering, .game-screen.is-leaving {
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}
.game-screen.is-entering {
  z-index: 2;
}
.game-screen.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-5%, 0, 0);
  z-index: 1;
}

@keyframes game-app-shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  12% {
    transform: translate3d(-7px, 2px, 0);
  }
  24% {
    transform: translate3d(6px, -3px, 0);
  }
  36% {
    transform: translate3d(-5px, 1px, 0);
  }
  48% {
    transform: translate3d(4px, -2px, 0);
  }
  60% {
    transform: translate3d(-3px, 1px, 0);
  }
  72% {
    transform: translate3d(2px, 0, 0);
  }
}
@keyframes feedback-border-flash-wrong {
  0% {
    opacity: 0.35;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
  }
}
@keyframes feedback-border-flash-success {
  0% {
    opacity: 0.35;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0.45;
  }
}
.game-app.is-feedback-wrong {
  animation: game-app-shake 0.52s ease-in-out;
}
.game-app.is-feedback-wrong .game-screen.is-active .game-screen__border {
  box-shadow: inset 0 0 0 2px rgba(255, 59, 74, 0.9), inset 0 0 40px rgba(255, 59, 74, 0.38), 0 0 32px rgba(255, 59, 74, 0.62);
  transition: box-shadow 0.1s ease-out;
}
.game-app.is-feedback-wrong .game-screen.is-active .game-screen__border::before {
  box-shadow: inset 0 0 72px rgba(255, 59, 74, 0.28), inset 0 0 130px rgba(255, 59, 74, 0.14);
  animation: feedback-border-flash-wrong 0.52s ease-out;
}
.game-app.is-feedback-wrong .game-screen.is-active .game-screen__border-corner {
  border-color: rgba(255, 59, 74, 0.95);
  box-shadow: 0 0 12px rgba(255, 59, 74, 0.75);
}

.game-app.is-feedback-success .game-screen.is-active .game-screen__border {
  box-shadow: inset 0 0 0 2px rgba(8, 255, 14, 0.88), inset 0 0 40px rgba(8, 255, 14, 0.32), 0 0 32px rgba(8, 255, 14, 0.55);
  transition: box-shadow 0.1s ease-out;
}
.game-app.is-feedback-success .game-screen.is-active .game-screen__border::before {
  box-shadow: inset 0 0 72px rgba(8, 255, 14, 0.24), inset 0 0 130px rgba(8, 255, 14, 0.12);
  animation: feedback-border-flash-success 0.52s ease-out;
}
.game-app.is-feedback-success .game-screen.is-active .game-screen__border-corner {
  border-color: rgba(8, 255, 14, 0.95);
  box-shadow: 0 0 12px rgba(8, 255, 14, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .game-app.is-feedback-wrong {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .game-app.is-transitioning {
    pointer-events: auto;
  }
  .game-app.is-transitioning .game-screen * {
    animation-play-state: running !important;
  }
  .game-screen.is-entering, .game-screen.is-leaving {
    transition: none;
    will-change: auto;
  }
}
.game-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: visible;
  touch-action: manipulation;
  container-type: inline-size;
  font-family: "Chiron Go Round TC", sans-serif;
}
.game-screen__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.game-screen__logo {
  position: absolute;
  top: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  max-width: 200px;
  z-index: 4;
}
.game-screen__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.game-screen__title {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 2;
}
.game-screen__title img {
  display: block;
  width: 100%;
  height: auto;
}
.game-screen__title h1 {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  font-size: clamp(26px, 11.5cqw, 55px);
  text-align: center;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 clamp(1px, 0.2cqw, 2px) clamp(1px, 0.2cqw, 2px) rgb(0, 0, 0), 0 clamp(1px, 0.4cqw, 4px) clamp(1px, 0.4cqw, 4px) rgb(0, 0, 0);
}
.game-screen__title h2 {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 67%;
  transform: translate(-50%, -50%);
  font-size: clamp(12px, 5.1cqw, 20px);
  text-align: center;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 clamp(1px, 0.2cqw, 2px) clamp(1px, 0.2cqw, 2px) rgb(0, 0, 0);
}
.game-screen__character {
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -48%);
  width: 100%;
  max-width: 100%;
  z-index: 3;
  pointer-events: none;
}
.game-screen__character img {
  display: block;
  width: 100%;
  height: auto;
}
.game-screen__actions {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(10% + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5%;
  width: 90%;
  max-width: 400px;
  z-index: 4;
}
.game-screen__btn {
  flex: 1;
  max-width: 48%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.game-screen__btn:active {
  transform: scale(0.96);
}
.game-screen__btn img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.7;
}
.game-screen__btn span {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: clamp(18px, 7.1cqw, 34px);
  font-weight: 900;
  letter-spacing: clamp(0.05em, 0.7cqw, 3.4px);
  color: #fff;
  line-height: 1;
  text-shadow: 0 clamp(1px, 0.2cqw, 2px) clamp(1px, 0.2cqw, 2px) rgb(0, 0, 0);
}

html[lang=en] .game-screen__title h1 {
  width: 94%;
  font-size: clamp(18px, 7.8cqw, 36px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}
html[lang=en] .game-screen__title h2 {
  display: none;
}
html[lang=en] #screen-cover .game-screen__btn span {
  font-size: clamp(12px, 4.6cqw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

#screen-cover .game-lang-switch {
  position: absolute;
  top: calc(3.5% + env(safe-area-inset-top, 0px));
  right: calc(12px + env(safe-area-inset-right, 0px));
  z-index: 10;
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #7df9ff;
  border-radius: clamp(5px, 1.5vw, 8px);
  overflow: hidden;
  background: rgba(0, 10, 24, 0.45);
  box-shadow: 0 0 10px rgba(0, 232, 255, 0.2);
}
#screen-cover .game-lang-switch__btn {
  flex: 1 1 50%;
  min-width: clamp(38px, 10.5vw, 46px);
  padding: clamp(6px, 1.6vw, 8px) clamp(10px, 2.8vw, 14px);
  border: none;
  margin: 0;
  background: transparent;
  color: #7df9ff;
  font-family: "Chiron Go Round TC", sans-serif;
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#screen-cover .game-lang-switch__btn.is-active {
  background: #7df9ff;
  color: #031428;
}
#screen-cover .game-lang-switch__btn:not(.is-active):hover {
  color: #fff;
}
#screen-cover .game-lang-switch__btn:active {
  opacity: 0.9;
}

#screen-cover .game-audio-toggle {
  position: absolute;
  top: calc(3.5% + env(safe-area-inset-top, 0px));
  left: calc(12px + env(safe-area-inset-left, 0px));
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 10vw, 44px);
  height: clamp(36px, 10vw, 44px);
  padding: 0;
  border: 1.5px solid #7df9ff;
  border-radius: clamp(5px, 1.5vw, 8px);
  background: rgba(0, 10, 24, 0.45);
  box-shadow: 0 0 10px rgba(0, 232, 255, 0.2);
  color: #7df9ff;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#screen-cover .game-audio-toggle__icon {
  font-size: clamp(20px, 5.4vw, 24px);
  line-height: 1;
  pointer-events: none;
}
#screen-cover .game-audio-toggle.is-on {
  background: #7df9ff;
  color: #031428;
  box-shadow: 0 0 14px rgba(0, 232, 255, 0.45);
}
#screen-cover .game-audio-toggle.is-off:hover {
  color: #fff;
}
#screen-cover .game-audio-toggle:active {
  opacity: 0.9;
  transform: scale(0.96);
}

@keyframes btn-box-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(0, 232, 255, 0.35), 0 0 14px rgba(0, 232, 255, 0.22), inset 0 0 10px rgba(0, 232, 255, 0.12);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 232, 255, 0.7), 0 0 24px rgba(0, 232, 255, 0.48), 0 0 40px rgba(125, 249, 255, 0.22), inset 0 0 18px rgba(0, 232, 255, 0.28);
  }
}
.game-screen__btn {
  border-radius: clamp(4px, 1.2cqw, 10px);
  animation: btn-box-glow 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transition: transform 0.15s ease;
}
.game-screen__btn:nth-child(2) {
  animation-delay: -1.26s;
}
.game-screen__btn:active {
  animation-play-state: paused;
  box-shadow: 0 0 16px rgba(0, 232, 255, 0.85), 0 0 28px rgba(0, 232, 255, 0.55), inset 0 0 14px rgba(0, 232, 255, 0.35);
}
.game-screen__btn img {
  position: relative;
  z-index: 1;
  border-radius: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .game-screen__btn {
    animation: none;
    box-shadow: 0 0 10px rgba(0, 232, 255, 0.45), inset 0 0 10px rgba(0, 232, 255, 0.15);
  }
}
@keyframes character-float {
  0%, 100% {
    transform: translate3d(0, 6px, -18px) rotateX(3deg) rotateY(-4.5deg) rotateZ(-1.2deg);
  }
  50% {
    transform: translate3d(0, -6px, 62px) rotateX(-10deg) rotateY(4.5deg) rotateZ(1.2deg);
  }
}
@keyframes character-shadow-pulse {
  0%, 100% {
    opacity: 0.48;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.22;
    transform: translateX(-50%) scaleX(0.68);
  }
}
.game-screen__character {
  perspective: clamp(520px, 130vw, 820px);
  perspective-origin: 50% 88%;
  transform-style: preserve-3d;
}
.game-screen__character::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 52%;
  height: clamp(6px, 2cqw, 12px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 232, 255, 0.45) 0%, rgba(0, 232, 255, 0.12) 45%, transparent 72%);
  transform: translateX(-50%);
  animation: character-shadow-pulse 4s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  pointer-events: none;
}
.game-screen__character img {
  display: block;
  transform-origin: center 88%;
  transform-style: preserve-3d;
  animation: character-float 4s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .game-screen__character {
    perspective: none;
  }
  .game-screen__character::after,
  .game-screen__character img {
    animation: none;
  }
  .game-screen__character img {
    transform: none;
  }
}
@keyframes border-beam-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes border-ambient-pulse {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
@keyframes border-corner-flash {
  0%, 70%, 100% {
    opacity: 0.55;
  }
  85% {
    opacity: 1;
  }
}
.game-screen__border {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 232, 255, 0.28), inset 0 0 24px rgba(0, 232, 255, 0.1), 0 0 18px rgba(0, 232, 255, 0.15);
}
.game-screen__border::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 232, 255, 0.12), inset 0 0 120px rgba(0, 232, 255, 0.05);
  animation: border-ambient-pulse 2.4s ease-in-out infinite;
}
.game-screen__border-ring {
  position: absolute;
  inset: 0;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  overflow: hidden;
  filter: drop-shadow(0 0 6px rgba(0, 232, 255, 0.9)) drop-shadow(0 0 14px rgba(0, 232, 255, 0.5));
}
.game-screen__border-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220vmax;
  height: 220vmax;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0deg, transparent 235deg, rgba(0, 232, 255, 0.08) 250deg, rgba(0, 232, 255, 0.45) 268deg, #e8fcff 282deg, #7df9ff 292deg, #e8fcff 302deg, rgba(0, 232, 255, 0.45) 312deg, rgba(0, 232, 255, 0.08) 328deg, transparent 345deg, transparent 360deg);
  animation: border-beam-spin 3.5s linear infinite;
}
.game-screen__border-beam--trail {
  width: 220vmax;
  height: 220vmax;
  background: conic-gradient(from 180deg, transparent 0deg, transparent 260deg, rgba(0, 232, 255, 0.25) 285deg, rgba(125, 249, 255, 0.5) 300deg, rgba(0, 232, 255, 0.25) 315deg, transparent 330deg, transparent 360deg);
  animation: border-beam-spin 7s linear infinite reverse;
  opacity: 0.55;
  filter: blur(1px);
}
.game-screen__border-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 232, 255, 0.75);
  animation: border-corner-flash 3.5s linear infinite;
  box-shadow: 0 0 8px rgba(0, 232, 255, 0.6);
}
.game-screen__border-corner--tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.game-screen__border-corner--tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
  animation-delay: 0.875s;
}
.game-screen__border-corner--br {
  right: 10px;
  bottom: 10px;
  border-top: none;
  border-left: none;
  animation-delay: 1.75s;
}
.game-screen__border-corner--bl {
  bottom: 10px;
  left: 10px;
  border-top: none;
  border-right: none;
  animation-delay: 2.625s;
}

@media (prefers-reduced-motion: reduce) {
  .game-screen__border::before, .game-screen__border-beam, .game-screen__border-beam--trail, .game-screen__border-corner {
    animation: none;
  }
  .game-screen__border-beam--trail {
    display: none;
  }
}
.howtoplay-screen {
  overflow: hidden;
}
.howtoplay-screen__content {
  position: absolute;
  top: 9%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  max-width: 400px;
  max-height: 62%;
  z-index: 4;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 2% 1rem;
  scrollbar-width: none;
}
.howtoplay-screen__content::-webkit-scrollbar {
  display: none;
}
.howtoplay-screen__head {
  text-align: center;
  margin-bottom: clamp(12px, 3.5cqw, 20px);
}
.howtoplay-screen__title {
  margin: 0;
  font-size: clamp(28px, 10.5cqw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-shadow: 0 clamp(1px, 0.15cqw, 2px) clamp(1px, 0.15cqw, 2px) rgb(0, 0, 0);
}
.howtoplay-screen__sub {
  margin: clamp(4px, 1.2cqw, 8px) 0 0;
  font-size: clamp(12px, 4.2cqw, 18px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 clamp(1px, 0.12cqw, 2px) clamp(1px, 0.12cqw, 2px) rgb(0, 0, 0);
}
.howtoplay-screen__block {
  margin-top: 10%;
  margin-bottom: clamp(10px, 2.8cqw, 16px);
}
.howtoplay-screen__label {
  margin: 0 0 clamp(6px, 1.8cqw, 10px);
  font-size: clamp(25px, 4.8cqw, 30px);
  font-weight: 900;
  color: #7df9ff;
  line-height: 1.35;
  text-shadow: 0 0 12px rgba(0, 232, 255, 0.45);
  text-align: center;
}
.howtoplay-screen__text {
  margin: 0;
  font-size: clamp(22px, 4cqw, 30px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.55;
  text-shadow: 0 clamp(1px, 0.1cqw, 2px) clamp(1px, 0.1cqw, 2px) rgb(0, 0, 0);
}
.howtoplay-screen__note {
  margin: clamp(6px, 1.6cqw, 10px) 0 0;
  font-size: clamp(16px, 3.2cqw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  text-align: center;
}
.howtoplay-screen__rank {
  font-size: clamp(25px, 4.8cqw, 30px);
  font-weight: 900;
  color: #ffbe3d;
  text-shadow: 0 0 10px rgba(255, 190, 61, 0.55);
}
.howtoplay-screen__divider {
  position: relative;
  height: 2px;
  margin: clamp(12px, 3cqw, 18px) 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 232, 255, 0.15) 8%, rgba(0, 232, 255, 0.85) 50%, rgba(0, 232, 255, 0.15) 92%, transparent 100%);
  box-shadow: 0 0 8px rgba(0, 232, 255, 0.35);
}
.howtoplay-screen__divider::before, .howtoplay-screen__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #00e8ff;
  box-shadow: 0 0 6px rgba(0, 232, 255, 0.8);
  transform: translateY(-50%) rotate(45deg);
}
.howtoplay-screen__divider::before {
  left: 12%;
}
.howtoplay-screen__divider::after {
  right: 12%;
}
.howtoplay-screen .game-screen__actions--single {
  width: 88%;
  max-width: 360px;
}
.howtoplay-screen .game-screen__actions--single .game-screen__btn {
  flex: none;
  width: 60%;
  max-width: 60%;
}

html[lang=en] .howtoplay-screen__content .howtoplay-screen__title {
  font-size: clamp(22px, 8cqw, 36px);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
html[lang=en] .howtoplay-screen__content .howtoplay-screen__sub {
  font-size: clamp(10px, 3.4cqw, 14px);
  letter-spacing: 0.08em;
}
html[lang=en] .howtoplay-screen__content .howtoplay-screen__label {
  font-size: clamp(17px, 3.6cqw, 21px);
  line-height: 1.3;
}
html[lang=en] .howtoplay-screen__content .howtoplay-screen__text {
  font-size: clamp(15px, 3.1cqw, 19px);
  line-height: 1.45;
}
html[lang=en] .howtoplay-screen__content .howtoplay-screen__note {
  font-size: clamp(12px, 2.5cqw, 14px);
  line-height: 1.4;
}
html[lang=en] .howtoplay-screen__content .howtoplay-screen__rank {
  font-size: clamp(17px, 3.6cqw, 21px);
}
html[lang=en] #screen-howtoplay .game-screen__actions--single .game-screen__btn span {
  font-size: clamp(12px, 4.6cqw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

@keyframes product-sway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
@keyframes title-box-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes title-frame-glow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(0, 232, 255, 0.35)) drop-shadow(0 0 14px rgba(0, 232, 255, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 232, 255, 0.75)) drop-shadow(0 0 28px rgba(0, 232, 255, 0.45)) drop-shadow(0 0 40px rgba(125, 249, 255, 0.2));
  }
}
@keyframes title-inner-glow {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.75;
  }
}
@keyframes title-scan-sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    transform: translateX(-30%);
    opacity: 0;
  }
  50% {
    transform: translateX(70%);
    opacity: 1;
  }
  80% {
    transform: translateX(170%);
    opacity: 0;
  }
  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}
@keyframes title-badge-pulse {
  0%, 100% {
    border-bottom-color: rgba(0, 232, 255, 0.5);
    text-shadow: 0 0 6px rgba(0, 232, 255, 0.3);
  }
  50% {
    border-bottom-color: #7df9ff;
    text-shadow: 0 0 12px rgba(0, 232, 255, 0.8);
  }
}
.select-screen {
  overflow: hidden;
}
.select-screen__header {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 420px;
  z-index: 4;
  text-align: center;
}
.select-screen__title-box {
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  animation: title-box-float 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.select-screen__title-box::before {
  content: "";
  position: absolute;
  inset: 12% 6% 10%;
  border-radius: 2px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 232, 255, 0.35) 0%, rgba(0, 232, 255, 0.08) 55%, transparent 75%);
  animation: title-inner-glow 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.select-screen__title-box::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 252, 255, 0.08) 35%, rgba(125, 249, 255, 0.35) 50%, rgba(232, 252, 255, 0.08) 65%, transparent 100%);
  animation: title-scan-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.select-screen__title-frame {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
  animation: title-frame-glow 2.6s ease-in-out infinite;
}
.select-screen__badge {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -42%);
  padding: 0.15em 0.75em;
  font-size: clamp(11px, 3cqw, 14px);
  font-weight: 900;
  color: #7df9ff;
  border-bottom: 3px solid rgba(0, 232, 255, 0.65);
  white-space: nowrap;
  z-index: 3;
  animation: title-badge-pulse 2.6s ease-in-out infinite;
}
.select-screen__title {
  position: absolute;
  width: 88%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: clamp(35px, 7cqw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 0.2vw 0.2vw rgb(0, 0, 0), 0 0.4vw 0.4vw rgb(0, 0, 0);
  letter-spacing: 0.06em;
  text-shadow: 0 clamp(1px, 0.12cqw, 2px) clamp(1px, 0.12cqw, 2px) rgb(0, 0, 0);
  z-index: 3;
}
.select-screen__sub {
  position: absolute;
  width: 88%;
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: clamp(10px, 3cqw, 14px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 clamp(1px, 0.1cqw, 2px) clamp(1px, 0.1cqw, 2px) rgb(0, 0, 0);
  z-index: 3;
}
.select-screen__hint {
  margin: clamp(10px, 2.8cqw, 16px) 0 0;
  font-size: clamp(13px, 3.8cqw, 17px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.select-screen__carousel {
  position: absolute;
  top: 32%;
  left: 0;
  width: 100%;
  height: 44%;
  z-index: 3;
  overflow: hidden;
  touch-action: pan-x pinch-zoom;
}
.select-screen__carousel.is-dragging .select-screen__slide.is-active .select-screen__product-img {
  animation-play-state: paused;
}
.select-screen__track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(4px, 1.5cqw, 10px);
  padding: 0 4%;
  will-change: transform;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}
.select-screen__slide {
  flex: 0 0 62%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(0.7);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center bottom;
}
.select-screen__slide.is-active {
  transform: scale(1.28);
  z-index: 2;
}
.select-screen__slide.is-active .select-screen__product-img {
  animation: product-sway 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transform-origin: center 85%;
}
.select-screen__product-img {
  display: block;
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.select-screen__color-picker {
  position: absolute;
  left: 50%;
  bottom: calc(37% + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 4cqw, 18px);
  z-index: 4;
}
.select-screen__color-picker[hidden] {
  display: none;
}
.select-screen__color-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 9cqw, 38px);
  height: clamp(30px, 9cqw, 38px);
  padding: 3px;
  border: 2px solid rgba(0, 232, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.select-screen__color-btn.is-active {
  border-color: rgba(125, 249, 255, 0.95);
  box-shadow: 0 0 10px rgba(0, 232, 255, 0.55);
}
.select-screen__color-btn:active {
  transform: scale(0.94);
}
.select-screen__color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.select-screen__color-swatch--white {
  background: linear-gradient(145deg, #fff 0%, #d8e8f0 100%);
}
.select-screen__color-swatch--black {
  background: linear-gradient(145deg, #3a3a3a 0%, #0a0a0a 100%);
}
.select-screen__controls {
  position: absolute;
  left: 50%;
  bottom: calc(18% + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 4cqw, 20px);
  width: 90%;
  max-width: 400px;
  z-index: 4;
}
.select-screen__name {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 7cqw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 clamp(1px, 0.15cqw, 2px) clamp(1px, 0.15cqw, 2px) rgb(0, 0, 0);
}
.select-screen__arrow {
  flex: 0 0 auto;
  padding: clamp(4px, 1.5cqw, 8px);
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.select-screen__arrow img {
  display: block;
  width: clamp(28px, 9cqw, 44px);
  height: auto;
  filter: drop-shadow(0 0 6px rgba(0, 232, 255, 0.6));
}
.select-screen__arrow:active {
  transform: scale(0.9);
  opacity: 0.85;
}
.select-screen .game-screen__actions--single {
  bottom: calc(8% + env(safe-area-inset-bottom, 0px));
}

html[lang=en] .select-screen__title {
  font-size: clamp(28px, 5.6cqw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.12;
}
html[lang=en] #screen-select .game-screen__actions--single .game-screen__btn span {
  font-size: clamp(12px, 4.6cqw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

@media (prefers-reduced-motion: reduce) {
  .select-screen__track,
  .select-screen__slide {
    transition: none;
  }
  .select-screen__slide.is-active .select-screen__product-img {
    animation: none;
  }
  .select-screen__title-box,
  .select-screen__title-box::before,
  .select-screen__title-box::after,
  .select-screen__title-frame,
  .select-screen__badge {
    animation: none;
  }
}
.performance-screen {
  overflow: hidden;
}
.performance-screen .select-screen__header {
  top: 8%;
}
.performance-screen__product {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  max-width: 92vw;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.performance-screen__product-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48vh;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  animation: product-sway 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transform-origin: center 85%;
}
.performance-screen[data-challenge-product=mb] .performance-screen__product-img, .performance-screen[data-challenge-product=nb] .performance-screen__product-img {
  max-height: 52vh;
}
.performance-screen__popout {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.performance-screen__popout.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.performance-screen__popout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
.performance-screen__popout-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 6% 5%;
  box-sizing: border-box;
  pointer-events: none;
}
.performance-screen__popout-frame {
  position: relative;
  width: min(88%, 420px);
  max-height: 82vh;
  aspect-ratio: 568/1024;
  flex-shrink: 0;
  isolation: isolate;
  pointer-events: auto;
}
.performance-screen__popout-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
.performance-screen__popout-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: #fff;
}
.performance-screen__popout-bar-title {
  position: absolute;
  top: 2.5%;
  left: 18%;
  right: 17%;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: clamp(16px, 4.8vw, 24px);
  font-weight: 900;
  color: #000;
  line-height: 1.15;
  letter-spacing: 0.06em;
  pointer-events: none;
}
.performance-screen__popout-subtitle {
  position: absolute;
  top: 14.2%;
  left: 8%;
  right: 8%;
  margin: 0 0 clamp(10px, 2.6vw, 18px);
  text-align: center;
  font-size: clamp(13px, 4.2vw, 18px);
  font-weight: 900;
  color: #7df9ff;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(0, 232, 255, 0.45);
}
.performance-screen__popout-section {
  position: absolute;
  left: 8%;
  right: 8%;
  text-align: center;
}
.performance-screen__popout-section--rhythm {
  top: 19.8%;
}
.performance-screen__popout-section--judge {
  top: 47%;
}
.performance-screen__popout-section--score {
  top: 65.5%;
  margin-top: clamp(10px, 2.4vw, 16px);
}
.performance-screen__popout-heading {
  position: relative;
  margin: 0 0 clamp(5px, 1.6vw, 9px);
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 900;
  color: #7df9ff;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 232, 255, 0.35);
}
.performance-screen__popout-text {
  position: relative;
  margin: 0 0 clamp(6px, 1.8vw, 10px);
  font-size: clamp(12px, 3.4vw, 16px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 clamp(1px, 0.08cqw, 2px) clamp(1px, 0.08cqw, 2px) rgb(0, 0, 0);
}
.performance-screen__popout-illust {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.performance-screen__popout-judge {
  position: relative;
  margin: 0 0 clamp(6px, 1.8vw, 10px);
  font-size: clamp(13px, 3.6vw, 17px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.performance-screen__popout-judge-perfect {
  color: #08ff0e;
}
.performance-screen__popout-judge-good {
  color: #ffd84a;
}
.performance-screen__popout-judge-miss {
  color: #ff3b4a;
}
.performance-screen__popout-judge-sep {
  color: #fff;
}
.performance-screen__popout-rules {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(12px, 3.3vw, 16px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.performance-screen__popout-rules li + li {
  margin-top: clamp(3px, 1vw, 7px);
}
.performance-screen__popout-rule-label {
  font-weight: 900;
}
.performance-screen__popout-rule-sep {
  color: rgba(255, 255, 255, 0.85);
}
.performance-screen__popout-close {
  position: absolute;
  top: 1.8%;
  right: 2.2%;
  z-index: 2;
  width: 11.5%;
  aspect-ratio: 1;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.performance-screen__countdown {
  position: absolute;
  inset: 0;
  z-index: 14;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.performance-screen__countdown.is-visible {
  opacity: 1;
  visibility: visible;
}
.performance-screen__countdown.is-pulse .performance-screen__countdown-num {
  animation: rhythm-countdown-pulse 0.85s ease;
}
.performance-screen__countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 3vw, 16px);
}
.performance-screen__countdown-label {
  margin: 0;
  padding: clamp(6px, 2cqw, 10px) clamp(14px, 4cqw, 22px);
  border: 1px solid rgba(0, 232, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 30, 60, 0.82);
  font-size: clamp(14px, 4.2cqw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1.2;
}
.performance-screen__countdown-num {
  font-size: clamp(72px, 22vw, 120px);
  font-weight: 900;
  color: #7df9ff;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(0, 232, 255, 0.85), 0 4px 12px rgba(0, 0, 0, 0.65);
}
.performance-screen.is-rhythm-playing .performance-screen__product-img {
  animation-play-state: paused;
}
.performance-screen__bars {
  position: absolute;
  bottom: 7.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 96%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(6px, 1.8cqw, 12px);
  padding: 0 1%;
  box-sizing: border-box;
}
.performance-screen__rhythm-stage {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}
.performance-screen__rhythm-stage:not(.is-active) {
  visibility: hidden;
}
.performance-screen__rhythm-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}
.performance-screen__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.performance-screen__bar:disabled {
  cursor: default;
}
.performance-screen__bar.is-hit {
  transform: scale(0.98);
}
.performance-screen__bar-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.performance-screen__bar-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 26%;
  height: 48%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.performance-screen__rhythm-glow {
  position: absolute;
  inset: 0;
  z-index: 11;
  pointer-events: none;
  overflow: hidden;
}
.performance-screen__rhythm-glow-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.1s ease-out;
  user-select: none;
  -webkit-user-drag: none;
}
.performance-screen__rhythm-glow-layer.is-visible {
  opacity: 1;
}

@keyframes rhythm-countdown-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  40% {
    transform: scale(1.12);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rhythm-judge-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  55% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.14);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes rhythm-judge-hide {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62);
  }
}
html[lang=en] .performance-screen__popout-bar-title {
  top: 3.2%;
  font-size: clamp(13px, 3.8vw, 18px);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.final-screen__settle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  max-width: 400px;
  max-height: 72vh;
  overflow-y: auto;
  z-index: 4;
  padding: clamp(14px, 3.5vw, 22px);
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  opacity: 0;
  scrollbar-width: none;
}
.final-screen__settle::-webkit-scrollbar {
  display: none;
}
.final-screen__badge {
  margin: 0 0 clamp(6px, 1.6vw, 10px);
  font-size: clamp(11px, 3.2vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #7df9ff;
  text-shadow: 0 0 12px rgba(0, 232, 255, 0.55);
}
.final-screen__title {
  margin: 0 0 clamp(14px, 3.5vw, 20px);
  font-size: clamp(22px, 6.5vw, 32px);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 0 clamp(1px, 0.12vw, 4px) clamp(1px, 0.12vw, 4px) rgb(0, 0, 0);
}
.final-screen__block {
  margin-bottom: clamp(12px, 3vw, 18px);
  padding: clamp(10px, 2.8vw, 14px) clamp(10px, 2.5vw, 14px);
  border: 1px solid rgba(0, 232, 255, 0.35);
  background: rgba(0, 12, 28, 0.55);
  box-shadow: inset 0 0 24px rgba(0, 232, 255, 0.08);
  text-align: left;
  opacity: 0;
}
.final-screen__block-title {
  margin: 0 0 clamp(8px, 2.2vw, 12px);
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 900;
  color: #7df9ff;
  letter-spacing: 0.06em;
  text-align: center;
}
.final-screen__row, .final-screen__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: clamp(6px, 1.8vw, 9px);
}
.final-screen__subtotal {
  margin-top: clamp(8px, 2.2vw, 12px);
  margin-bottom: 0;
  padding-top: clamp(8px, 2.2vw, 10px);
  border-top: 1px dashed rgba(0, 232, 255, 0.35);
}
.final-screen__subtotal .final-screen__label {
  font-weight: 900;
  color: #7df9ff;
}
.final-screen__label {
  font-size: clamp(12px, 3.4vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}
.final-screen__value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.final-screen__prefix {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 900;
  color: #7df9ff;
}
.final-screen__num {
  display: inline-block;
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 clamp(1px, 0.1vw, 2px) clamp(1px, 0.1vw, 2px) rgb(0, 0, 0);
}
.final-screen__num.is-rolling {
  color: #7df9ff;
  text-shadow: 0 0 14px rgba(0, 232, 255, 0.75);
}
.final-screen__num--sub {
  color: #7df9ff;
}
.final-screen__num--grand {
  font-size: clamp(36px, 11vw, 52px);
  color: #7df9ff;
  text-shadow: 0 0 16px rgba(0, 232, 255, 0.85), 0 2px 8px rgba(0, 0, 0, 0.65);
}
.final-screen__grand {
  margin-top: clamp(14px, 3.5vw, 20px);
  padding: clamp(12px, 3vw, 16px) clamp(10px, 2.5vw, 14px);
  border: 2px solid rgba(0, 232, 255, 0.55);
  background: rgba(0, 18, 36, 0.62);
  box-shadow: 0 0 20px rgba(0, 232, 255, 0.2);
  opacity: 0;
}
.final-screen__grand-label {
  display: block;
  margin-bottom: clamp(6px, 1.6vw, 10px);
  font-size: clamp(14px, 4.2vw, 18px);
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
}
.final-screen__grand-value {
  display: block;
}
.final-screen__tier-reveal {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.final-screen__tier-reveal.is-active {
  visibility: visible;
  opacity: 1;
}
.final-screen__tier-shake {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-origin: center center;
}
.final-screen__tier-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.final-screen__tier-frame.is-visible {
  opacity: 1;
  visibility: visible;
}
.final-screen__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(1.2% + env(safe-area-inset-bottom, 0px));
  z-index: 19;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 clamp(32px, 10vw, 64px);
  box-sizing: border-box;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.final-screen__action-btn {
  flex: 0 0 auto;
  width: clamp(44px, 12.5vw, 58px);
  height: clamp(44px, 12.5vw, 58px);
  padding: clamp(6px, 1.8vw, 10px);
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.final-screen__action-btn img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 232, 255, 0.45));
}
.final-screen__action-btn:active {
  transform: scale(0.9);
  opacity: 0.85;
}
.final-screen__tier-logo {
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 60%;
  height: auto;
  z-index: 18;
  transform-origin: 50% 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.final-screen__tier-logo.is-visible {
  visibility: visible;
}
.final-screen__product-reveal {
  position: absolute;
  inset: 0;
  z-index: 17;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3.5vw, 20px);
  padding: 0 6% 22%;
  box-sizing: border-box;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.final-screen__product-logo {
  position: absolute;
  top: calc(3.5% + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  max-width: 200px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
.final-screen__product-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.final-screen__product-hero {
  width: 78%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-screen__product-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}
.final-screen__product-name {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(4px, 1.2vw, 8px);
}
.final-screen__product-name-plate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(96%, 400px);
  min-width: min(92%, 320px);
  margin: 0;
  padding: clamp(12px, 3.2vw, 16px) clamp(16px, 5vw, 28px);
  box-sizing: border-box;
  background: radial-gradient(ellipse 72% 85% at 50% 50%, rgba(0, 196, 255, 0.32) 0%, rgba(0, 140, 220, 0.12) 42%, transparent 72%), url("https://storage-asset.msi.com/event/2026/corp/40thgame/images/coner.png") center/100% 100% no-repeat;
}
.final-screen__product-name-text {
  position: relative;
  z-index: 1;
  font-size: clamp(13px, 3.8vw, 20px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  text-shadow: 0 clamp(1px, 0.12vw, 4px) clamp(1px, 0.12vw, 4px) rgb(0, 0, 0);
}
.final-screen__end-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.72);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.final-screen__end-overlay.is-visible {
  visibility: visible;
  pointer-events: auto;
}
.final-screen__end-close {
  position: absolute;
  top: calc(10px + env(safe-area-inset-top, 0px));
  right: calc(10px + env(safe-area-inset-right, 0px));
  z-index: 2;
  width: clamp(36px, 10vw, 44px);
  height: clamp(36px, 10vw, 44px);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.final-screen__end-close img {
  display: block;
  width: 100%;
  height: auto;
}
.final-screen__end-close:active {
  transform: scale(0.9);
  opacity: 0.85;
}
.final-screen__end-play-again {
  position: relative;
  z-index: 1;
  width: min(88vw, 420px);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.final-screen__end-play-again:active {
  transform: scale(0.97);
}
.final-screen__end-play-again-frame {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 232, 255, 0.35));
}
.final-screen__end-play-again-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 8.8vw, 44px);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 clamp(1px, 0.12vw, 4px) clamp(1px, 0.12vw, 4px) rgb(0, 0, 0);
}
.final-screen__play-again-compact {
  position: absolute;
  right: clamp(14px, 5vw, 28px);
  bottom: calc(19.8% + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 14.5vw, 68px);
  min-height: clamp(54px, 14.5vw, 68px);
  padding: clamp(6px, 1.6vw, 8px) clamp(4px, 1.2vw, 6px);
  box-sizing: border-box;
  border: 1.5px solid rgba(125, 249, 255, 0.85);
  border-radius: clamp(6px, 1.8vw, 10px);
  background: rgba(0, 12, 28, 0.55);
  box-shadow: 0 0 12px rgba(0, 232, 255, 0.28), inset 0 0 10px rgba(0, 232, 255, 0.06);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}
.final-screen__play-again-compact.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.final-screen__play-again-compact:active {
  transform: scale(0.94);
  border-color: #fff;
}
.final-screen__play-again-compact[hidden] {
  display: none;
}
.final-screen__play-again-compact:not([hidden]).is-visible {
  display: flex;
}
.final-screen__play-again-compact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1px, 0.4vw, 3px);
  font-size: clamp(11px, 3.1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.05;
  pointer-events: none;
  text-shadow: 0 clamp(1px, 0.1vw, 2px) clamp(1px, 0.1vw, 2px) rgb(0, 0, 0);
}
.final-screen__play-again-compact-text span {
  display: block;
}
.final-screen.is-tier-phase .final-screen__settle {
  z-index: 16;
  pointer-events: none;
}
.final-screen.is-tier-phase .final-screen__actions.is-visible {
  visibility: visible;
  pointer-events: auto;
}
.final-screen.is-tier-phase .final-screen__actions.is-visible.is-blocked {
  pointer-events: none;
}
.final-screen.is-tier-phase .game-screen__border {
  opacity: 0;
  visibility: hidden;
}

.assembly-svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.assembly-screen {
  overflow: hidden;
}
.assembly-screen__result {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.assembly-screen__result.is-visible {
  opacity: 0.8;
  visibility: visible;
  pointer-events: auto;
}
.assembly-screen__result.is-fail.is-visible, .assembly-screen__result.is-success.is-visible {
  cursor: pointer;
}
.assembly-screen__result-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(2.4);
  will-change: transform;
  opacity: 1;
}
.assembly-screen__result-img.is-animating {
  animation: assembly-result-zoom 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.assembly-screen__header {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 420px;
  z-index: 4;
}
.assembly-screen__title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 2cqw, 10px);
}
.assembly-screen__title-box {
  position: relative;
  flex: 1;
  min-width: 0;
}
.assembly-screen__title-frame {
  display: block;
  width: 100%;
  height: auto;
}
.assembly-screen__title {
  position: absolute;
  width: 72%;
  left: 8%;
  top: 36%;
  transform: translateY(-50%);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(2px, 0.8cqw, 6px);
  margin: 0;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.assembly-screen__title-main {
  font-size: clamp(26px, 8.5cqw, 38px);
  text-shadow: 0 clamp(1px, 0.1cqw, 2px) clamp(1px, 0.1cqw, 2px) rgb(0, 0, 0);
  padding-left: 15%;
}
.assembly-screen__title-status {
  font-size: clamp(16px, 5.2cqw, 24px);
  text-shadow: 0 clamp(1px, 0.08cqw, 2px) clamp(1px, 0.08cqw, 2px) rgb(0, 0, 0);
}
.assembly-screen__sub {
  position: absolute;
  width: 80%;
  left: 10%;
  text-align: center;
  top: 49%;
  transform: translateY(-50%);
  margin: 0;
  font-size: clamp(9px, 2.8cqw, 13px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  line-height: 1;
}
.assembly-screen__timer {
  position: absolute;
  flex: 0 0 auto;
  width: clamp(52px, 16cqw, 72px);
  height: clamp(52px, 16cqw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(8px, 2.5cqw, 14px);
  font-size: clamp(28px, 9cqw, 42px);
  font-weight: 900;
  color: #08ff0e;
  top: 52%;
  left: 76%;
  line-height: 1;
  text-shadow: 0 0 8px rgba(8, 255, 14, 0.55);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.assembly-screen__timer.is-timer-warn {
  color: #ff4d4d;
  text-shadow: 0 0 8px rgba(255, 77, 77, 0.6);
}
.assembly-screen__status {
  margin: clamp(6px, 1.8cqw, 10px) 0 0;
  text-align: left;
  font-size: clamp(11px, 3.2cqw, 15px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 57%;
}
.assembly-screen__zone {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 400px;
  z-index: 3;
}
.assembly-screen__zone.is-drag-active .assembly-screen__hint-shadow:not(.is-hint-shadow-off) {
  -webkit-filter: url(#assembly-hint-shadow-filter-strong);
  filter: url(#assembly-hint-shadow-filter-strong);
  animation: none;
}
.assembly-screen--mb .assembly-screen__zone {
  width: 55%;
  max-width: none;
}
.assembly-screen--nb .assembly-screen__zone {
  width: 55%;
  max-width: none;
}
.assembly-screen__zone.is-assembly-complete .assembly-screen__placed {
  opacity: 0;
  visibility: hidden;
}
.assembly-screen__zone-base.is-complete {
  z-index: 5;
  width: 100%;
}
.assembly-screen__zone-stage {
  position: relative;
  width: 100%;
  animation: assembly-zone-float 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.assembly-screen__zone-anchor {
  position: relative;
  width: 100%;
}
.assembly-screen__zone-base {
  display: block;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  position: relative;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.assembly-screen__zone-base.is-visible {
  opacity: 1;
  visibility: visible;
}
.assembly-screen__hint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
}
.assembly-screen__hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.assembly-screen__hint.is-hint-pending {
  opacity: 0;
  visibility: hidden;
}
.assembly-screen__hint.is-hint-visible {
  opacity: 1;
  visibility: visible;
}
.assembly-screen__hint-shape {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  max-width: 100%;
  transform-origin: center center;
  animation: assembly-hint-rock 4.8s ease-in-out infinite;
}
.assembly-screen__hint-shadow,
.assembly-screen__hint-ghost {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
.assembly-screen__hint-shadow {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: url(#assembly-hint-shadow-filter);
  filter: url(#assembly-hint-shadow-filter);
  animation: assembly-hint-svg-pulse 2s ease-in-out infinite;
}
.assembly-screen__hint-shadow.is-hint-shadow-off {
  filter: none !important;
  animation: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.assembly-screen__hint.is-hint-pending .assembly-screen__hint-shadow {
  filter: none !important;
  animation: none !important;
}
.assembly-screen__hint-ghost {
  position: relative;
  z-index: 1;
  opacity: 0.07;
}
@keyframes assembly-hint-svg-pulse {
  0%, 100% {
    -webkit-filter: url(#assembly-hint-shadow-filter);
    filter: url(#assembly-hint-shadow-filter);
  }
  50% {
    -webkit-filter: url(#assembly-hint-shadow-filter-strong);
    filter: url(#assembly-hint-shadow-filter-strong);
  }
}
@keyframes assembly-hint-rock {
  0%, 100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}
@keyframes assembly-zone-float {
  0%, 100% {
    transform: translateX(-7px);
  }
  50% {
    transform: translateX(7px);
  }
}
.assembly-screen__drop {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 48%;
  height: 42%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}
.assembly-screen__placed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.assembly-screen__placed .assembly-part--placed {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transform-origin: center center;
  filter: none;
  animation: none;
}
.assembly-screen__placed .assembly-part--placed img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 232, 255, 0.35));
}
.assembly-screen__placed .assembly-part--placed.is-place-visible img {
  animation: assembly-place-glow 0.4s ease-out;
}
.assembly-screen__tray-countdown {
  position: absolute;
  left: 50%;
  bottom: calc(4% + env(safe-area-inset-bottom, 0px) + clamp(148px, 30cqw, 210px) + 10px);
  transform: translateX(-50%);
  margin: 0;
  padding: clamp(6px, 2cqw, 10px) clamp(14px, 4cqw, 22px);
  border: 1px solid rgba(0, 232, 255, 0.45);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.82);
  font-size: clamp(14px, 4.2cqw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.assembly-screen__tray-countdown.is-visible {
  opacity: 1;
  visibility: visible;
}
.assembly-screen__tray {
  position: absolute;
  left: 50%;
  bottom: calc(4% + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: 94%;
  max-width: 420px;
  height: clamp(348px, 30cqw, 410px);
  z-index: 4;
}
.assembly-screen__tray:not(.is-ready) .assembly-part {
  opacity: 0;
  pointer-events: none;
}
.assembly-screen__tray.is-ready .assembly-part {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}
.assembly-screen__tray.is-tray-settling .assembly-part {
  transition: none !important;
}
.assembly-screen__timer.is-penalty {
  color: #ff8a8a !important;
  text-shadow: 0 0 10px rgba(255, 138, 138, 0.75) !important;
}

.assembly-part {
  touch-action: none;
  cursor: grab;
  z-index: 2;
}
.assembly-screen__tray .assembly-part {
  position: absolute;
  margin: 0;
}
.assembly-part img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.assembly-part.is-dragging {
  cursor: grabbing;
  z-index: 100;
  transition: none;
}
.assembly-screen__tray .assembly-part.is-placed {
  visibility: hidden;
  pointer-events: none;
}
.assembly-part.is-snapping {
  transition: left 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), top 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.assembly-screen__tray .assembly-part.is-tray-hint-target {
  z-index: 6;
}
.assembly-screen__tray .assembly-part.is-tray-hint-target img {
  animation: assembly-tray-hint-img-glow 1.35s ease-in-out infinite;
}
.assembly-screen__tray .assembly-part.is-tray-hint-target::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: clamp(6px, 1.6vw, 10px);
  border: 1.5px solid rgba(125, 249, 255, 0.9);
  box-shadow: 0 0 14px rgba(0, 232, 255, 0.65), inset 0 0 12px rgba(0, 232, 255, 0.2);
  pointer-events: none;
  animation: assembly-tray-hint-ring 1.35s ease-in-out infinite;
}

@keyframes assembly-tray-hint-img-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(0, 232, 255, 0.55)) drop-shadow(0 0 14px rgba(0, 232, 255, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(125, 249, 255, 0.95)) drop-shadow(0 0 22px rgba(0, 232, 255, 0.65));
  }
}
@keyframes assembly-tray-hint-ring {
  0%, 100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}
body > .assembly-part.is-dragging {
  top: auto;
  right: auto;
  bottom: auto;
  transition: none !important;
}

.assembly-part--placed {
  width: 90%;
}

@keyframes assembly-place-glow {
  0% {
    filter: drop-shadow(0 0 0 rgba(0, 232, 255, 0));
  }
  50% {
    filter: drop-shadow(0 6px 18px rgba(0, 232, 255, 0.55));
  }
  100% {
    filter: drop-shadow(0 4px 12px rgba(0, 232, 255, 0.35));
  }
}
@keyframes assembly-result-zoom {
  from {
    transform: scale(2.4);
  }
  to {
    transform: scale(1);
  }
}
html[lang=en] .assembly-screen__title {
  left: 12%;
  width: 76%;
  justify-content: center;
}
html[lang=en] .assembly-screen__title-status,
html[lang=en] #assembly-title-status {
  display: none;
}
html[lang=en] .assembly-screen__title-main {
  padding-left: 0;
  flex: 1 1 100%;
  width: 100%;
  text-align: center;
}
html[lang=en] .assembly-screen__sub {
  left: 50%;
  width: 86%;
  padding-top: 3%;
  transform: translate(-50%, -50%);
  text-align: center;
}
html[lang=en] .assembly-screen__status {
  bottom: 5%;
}

/*# sourceMappingURL=style.css.map */
