:root {
  color-scheme: dark;
  --ink-950: #09111f;
  --ink-900: #101a32;
  --ink-850: #16223d;
  --cream: #fff7e8;
  --cream-soft: #f4e9d7;
  --muted: #b8c2d7;
  --mint: #a8dbc8;
  --butter: #f6d78c;
  --coral: #f2a495;
  --lavender: #c8b9ec;
  --blue: #9fc8eb;
  --panel: rgba(22, 34, 61, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --radius-pill: 999px;
  --radius-card: 34px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.26);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink-950);
}

body {
  color: var(--cream);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell,
.welcome,
.game {
  width: 100%;
  min-height: 100dvh;
}

#ambient-canvas,
#effects-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#ambient-canvas {
  z-index: 1;
  opacity: 0.75;
}

.welcome {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 43%, rgba(64, 86, 130, 0.28), transparent 35%),
    linear-gradient(145deg, #0b1428 0%, #111d36 50%, #11182d 100%);
}

.welcome[hidden] {
  display: none;
}

.welcome__glow {
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: breathe 8s ease-in-out infinite alternate;
}

.welcome__glow--one {
  top: -17rem;
  left: -10rem;
  background: var(--mint);
}

.welcome__glow--two {
  right: -12rem;
  bottom: -19rem;
  background: var(--coral);
  animation-delay: -4s;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--cream);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 3px;
  place-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand__mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--butter);
}

.brand__mark i:nth-child(2) { background: var(--mint); }
.brand__mark i:nth-child(3) { background: var(--coral); }
.brand__mark i:nth-child(4) { background: var(--blue); }

.parent-link {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream-soft);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.parent-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(900px, calc(100% - 32px));
  margin: auto;
  padding: 60px 0 26px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--butter);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
  color: var(--mint);
}

.hero__copy {
  max-width: 600px;
  margin: 26px 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.play-button {
  position: relative;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 76px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--butter);
  box-shadow: 0 13px 0 #c8954d, 0 24px 46px rgba(5, 10, 20, 0.34);
  color: #2f2a2a;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.play-button::before {
  position: absolute;
  inset: 5px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.play-button:hover {
  filter: brightness(1.04);
  transform: translateY(-3px);
  box-shadow: 0 16px 0 #c8954d, 0 28px 52px rgba(5, 10, 20, 0.38);
}

.play-button:active {
  transform: translateY(8px);
  box-shadow: 0 5px 0 #c8954d, 0 14px 32px rgba(5, 10, 20, 0.3);
}

.play-button:focus-visible,
.parent-link:focus-visible,
.feature-pill:focus-visible,
.icon-button:focus-visible,
.panel-primary:focus-visible,
.panel-secondary:focus-visible,
.text-button:focus-visible {
  outline: 4px solid rgba(168, 219, 200, 0.55);
  outline-offset: 5px;
}

.play-button__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding-left: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  font-size: 15px;
}

.play-button__spark {
  font-size: 22px;
}

.play-button--small {
  width: 100%;
  min-height: 62px;
  box-shadow: 0 8px 0 #c8954d;
  font-size: 18px;
}

.hero__note {
  margin: 23px 0 20px;
  color: #8f9bb2;
  font-size: 13px;
}

.activity {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(7, 14, 28, 0.42);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 13px;
}

.activity__item {
  display: flex;
  gap: 7px;
  align-items: center;
}

.activity__item strong {
  color: var(--cream);
}

.activity__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(168, 219, 200, 0.72);
}

.activity__divider {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.hero__stickers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.preview-sticker,
.sticker__image {
  background-image: url("assets/stickers-v2.png");
  background-repeat: no-repeat;
  background-size: 400% 400%;
}

.preview-sticker {
  position: absolute;
  width: clamp(84px, 10vw, 140px);
  aspect-ratio: 1;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
  opacity: 0.88;
  animation: preview-float 6s ease-in-out infinite alternate;
}

.preview-sticker--bear {
  top: 18%;
  left: -2%;
  background-position: 0% 0%;
  transform: rotate(-10deg);
}

.preview-sticker--star {
  right: 0;
  bottom: 10%;
  background-position: 35.417% 95.833%;
  animation-delay: -3s;
  transform: rotate(9deg);
}

.preview-sticker--rocket {
  top: 11%;
  right: 6%;
  width: clamp(70px, 8vw, 118px);
  background-position: 69.271% 0%;
  animation-delay: -1.5s;
  transform: rotate(12deg);
}

.welcome-footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0 20px 24px;
}

.feature-pill {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: #9ca7bb;
  font-size: 13px;
}

.feature-pill span {
  color: var(--butter);
  font-size: 16px;
}

.game {
  position: fixed;
  inset: 0;
  display: none;
  isolation: isolate;
  overflow: hidden;
  cursor: none;
  background: #09111f;
  touch-action: none;
}

.game.is-active {
  display: block;
}

.game__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(78, 99, 151, 0.14), transparent 45%),
    linear-gradient(145deg, #08101d, #0c1529 54%, #11182a);
}

.nebula {
  position: absolute;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.055;
  animation: nebula-drift 18s ease-in-out infinite alternate;
}

.nebula--one {
  top: -12vw;
  left: -7vw;
  background: var(--blue);
}

.nebula--two {
  right: -12vw;
  bottom: -9vw;
  background: var(--coral);
  animation-delay: -7s;
}

.nebula--three {
  top: 38%;
  left: 40%;
  background: var(--lavender);
  animation-delay: -12s;
}

#effects-canvas {
  position: absolute;
  z-index: 1;
}

.sticker-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--sticker-size, 140px);
  aspect-ratio: 1;
  margin: calc(var(--sticker-size, 140px) / -2);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
  transform-origin: 50% 62%;
  will-change: opacity, transform;
}

.sticker__image {
  width: 100%;
  height: 100%;
}

.sticker--pop {
  animation: sticker-pop 3.7s cubic-bezier(0.2, 0.86, 0.25, 1) forwards;
}

.sticker--float {
  animation: sticker-float 4.2s cubic-bezier(0.18, 0.8, 0.22, 1) forwards;
}

.sticker--sway {
  animation: sticker-sway 4s cubic-bezier(0.2, 0.82, 0.28, 1) forwards;
}

.sticker--roll {
  animation: sticker-roll 4.1s cubic-bezier(0.2, 0.78, 0.28, 1) forwards;
}

.glyph {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--sticker-size, 140px);
  aspect-ratio: 1;
  margin: calc(var(--sticker-size, 140px) / -2);
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 34%;
  background: var(--glyph-color, var(--mint));
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.42), 0 20px 45px rgba(0, 0, 0, 0.24);
  color: #263149;
  font-size: calc(var(--sticker-size, 140px) * 0.58);
  font-weight: 900;
  line-height: 1;
  animation: glyph-pop 3.3s cubic-bezier(0.2, 0.86, 0.25, 1) forwards;
}

.parent-hold {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  left: max(16px, env(safe-area-inset-left));
  z-index: 6;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 178px;
  min-height: 52px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 16, 29, 0.34);
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.parent-hold__ring {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(168, 219, 200, 0.2);
  border-radius: 50%;
  opacity: 0;
}

.parent-hold.is-holding .parent-hold__ring {
  opacity: 1;
  animation: hold-progress 3s linear forwards;
}

.parent-hold__dot {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, var(--mint) 0 18%, rgba(168, 219, 200, 0.12) 20% 100%);
}

.parent-hold__label {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.score {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 7px 9px 7px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(8, 16, 29, 0.45);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.score strong {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: #263149;
  font-size: 15px;
}

.first-hint {
  position: absolute;
  bottom: max(36px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(8, 16, 29, 0.5);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  opacity: 0;
  transform: translate(-50%, 20px);
  backdrop-filter: blur(14px);
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
}

.first-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.first-hint__key {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 4px 0 #b8aa92;
  color: #2e3447;
  font-size: 16px;
  font-weight: 900;
  animation: key-tap 1.8s ease-in-out infinite;
}

.fullscreen-return[hidden] {
  display: none;
}

.fullscreen-return {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 10, 20, 0.76);
  backdrop-filter: blur(20px);
}

.fullscreen-return__card {
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: #17223b;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.fullscreen-return__moon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 24px;
  background: rgba(246, 215, 140, 0.13);
  color: var(--butter);
  font-size: 38px;
}

.fullscreen-return h2,
.parent-panel h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.fullscreen-return p {
  margin: 12px 0 26px;
  color: var(--muted);
  line-height: 1.5;
}

.text-button {
  margin-top: 20px;
  padding: 10px 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.parent-panel {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 20px;
  border: 0;
  background: rgba(5, 10, 20, 0.72);
  color: var(--cream);
  backdrop-filter: blur(20px);
}

.parent-panel::backdrop {
  background: rgba(5, 10, 20, 0.52);
}

.parent-panel[open] {
  display: grid;
  place-items: center;
}

.parent-panel__card {
  width: min(560px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: #17223b;
  box-shadow: var(--shadow-soft);
}

.parent-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.parent-panel__header .eyebrow {
  margin-bottom: 8px;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 31px;
  cursor: pointer;
}

.setting-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.setting-row > div {
  display: grid;
  gap: 5px;
}

.setting-row strong {
  font-size: 16px;
}

.setting-row span {
  color: var(--muted);
  font-size: 13px;
}

.setting-row--range {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 44%);
}

.switch {
  position: relative;
  width: 58px;
  height: 34px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: #2b3855;
  cursor: pointer;
  transition: background 180ms ease;
}

.switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + span {
  background: #6cae98;
}

.switch input:checked + span::after {
  transform: translateX(24px);
}

input[type="range"] {
  accent-color: var(--mint);
}

.parent-panel__tip {
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 20px;
  background: rgba(168, 219, 200, 0.09);
  color: #bdc8db;
  font-size: 12px;
  line-height: 1.55;
}

.parent-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.panel-primary,
.panel-secondary {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 900;
  cursor: pointer;
}

.panel-primary {
  border: 0;
  background: var(--butter);
  color: #302a2a;
}

.panel-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

@keyframes breathe {
  to { transform: scale(1.2) translate3d(2vw, 1vw, 0); }
}

@keyframes preview-float {
  from { translate: 0 -7px; }
  to { translate: 0 10px; }
}

@keyframes nebula-drift {
  to { transform: translate3d(8vw, 5vw, 0) scale(1.18); }
}

@keyframes sticker-pop {
  0% { opacity: 0; transform: scale(0.25) rotate(-8deg); }
  14% { opacity: 1; transform: scale(1.12) rotate(3deg); }
  25%, 70% { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: translateY(-38px) scale(0.88) rotate(5deg); }
}

@keyframes sticker-float {
  0% { opacity: 0; transform: translateY(40px) scale(0.45) rotate(-5deg); }
  16% { opacity: 1; transform: translateY(0) scale(1.05) rotate(2deg); }
  72% { opacity: 1; transform: translateY(-18px) scale(1) rotate(-2deg); }
  100% { opacity: 0; transform: translateY(-78px) scale(0.85) rotate(4deg); }
}

@keyframes sticker-sway {
  0% { opacity: 0; transform: scale(0.4) rotate(-16deg); }
  18% { opacity: 1; transform: scale(1.06) rotate(8deg); }
  38% { transform: scale(1) rotate(-5deg); }
  68% { opacity: 1; transform: scale(1) rotate(3deg); }
  100% { opacity: 0; transform: translateY(-28px) scale(0.87) rotate(-5deg); }
}

@keyframes sticker-roll {
  0% { opacity: 0; transform: translateX(-45px) scale(0.5) rotate(-25deg); }
  18% { opacity: 1; transform: translateX(0) scale(1.06) rotate(5deg); }
  72% { opacity: 1; transform: translateX(15px) scale(1) rotate(-2deg); }
  100% { opacity: 0; transform: translateX(65px) scale(0.82) rotate(15deg); }
}

@keyframes glyph-pop {
  0% { opacity: 0; transform: scale(0.22) rotate(-12deg); }
  18% { opacity: 1; transform: scale(1.14) rotate(5deg); }
  31%, 72% { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: translateY(-48px) scale(0.8) rotate(8deg); }
}

@keyframes hold-progress {
  from { border-color: rgba(168, 219, 200, 0.32); transform: scale(0.65) rotate(0); }
  to { border-color: var(--mint); transform: scale(1.15) rotate(360deg); }
}

@keyframes key-tap {
  0%, 65%, 100% { transform: translateY(0); box-shadow: 0 4px 0 #b8aa92; }
  75% { transform: translateY(4px); box-shadow: 0 0 0 #b8aa92; }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .parent-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    justify-content: center;
    padding-top: 32px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero__copy {
    max-width: 420px;
    margin-top: 20px;
    font-size: 16px;
  }

  .preview-sticker--bear {
    top: 12%;
    left: -3%;
  }

  .preview-sticker--rocket {
    top: 10%;
    right: -2%;
  }

  .preview-sticker--star {
    right: -2%;
    bottom: 13%;
  }

  .activity {
    flex-direction: column;
    gap: 4px;
    border-radius: 22px;
  }

  .activity__divider {
    display: none;
  }

  .welcome-footer {
    display: none;
  }

  .parent-hold {
    min-width: 52px;
    width: 52px;
    padding: 8px;
  }

  .parent-hold__label {
    display: none;
  }

  .score span {
    display: none;
  }

  .score {
    padding-left: 9px;
  }

  .parent-panel__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 800px) and (min-width: 721px) {
  .site-header {
    padding-block: 12px;
  }

  .hero {
    padding: 18px 0 12px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.6vw, 72px);
  }

  .hero__copy {
    margin: 14px 0 16px;
    font-size: 17px;
  }

  .play-button {
    min-height: 64px;
  }

  .hero__note {
    margin-block: 14px 12px;
  }

  .welcome-footer {
    padding-bottom: 12px;
  }
}

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