:root {
  --ink: #1c130c;
  --bark: #5d3520;
  --bark-dark: #2f1d13;
  --fur: #b85f31;
  --leaf: #335e35;
  --leaf-bright: #82a85c;
  --sky: #7fc9d6;
  --water: #2a798c;
  --honey: #f2ba48;
  --cream: #fff1c6;
  --paper: #f8dfaa;
  --danger: #c44429;
  --shadow: 0 22px 70px rgba(25, 18, 11, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(127, 201, 214, 0.8), transparent 28rem),
    linear-gradient(180deg, #8fd1d9 0%, #f5d99a 46%, #244228 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(51, 94, 53, 0.22) 18% 19%, transparent 19% 48%, rgba(51, 94, 53, 0.18) 48% 49%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(47, 29, 19, 0.08) 0 1px, transparent 1px 72px);
  opacity: 0.72;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 5px 7px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--honey), var(--fur), var(--leaf-bright));
  box-shadow: 0 0 18px rgba(242, 186, 72, 0.7);
}

.leaf-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  top: -10vh;
  width: 22px;
  height: 12px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--leaf-bright), var(--leaf));
  opacity: 0.48;
  animation: leaf-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
  transform: rotate(var(--rotation));
}

@keyframes leaf-fall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(var(--rotation));
  }
  50% {
    transform: translate3d(var(--sway), 52vh, 0) rotate(calc(var(--rotation) + 160deg));
  }
  100% {
    transform: translate3d(calc(var(--sway) * -0.4), 112vh, 0) rotate(calc(var(--rotation) + 330deg));
  }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px;
  border: 2px solid rgba(47, 29, 19, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 241, 198, 0.78);
  box-shadow: 0 16px 50px rgba(47, 29, 19, 0.15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 4px 4px 0 var(--honey);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-links a,
.header-cta,
.header-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-links a:hover,
.header-cta:hover,
.header-copy:hover {
  transform: translateY(-2px);
}

.nav-links a {
  color: rgba(28, 19, 12, 0.76);
}

.nav-links a:hover {
  background: rgba(93, 53, 32, 0.1);
}

.header-cta {
  color: var(--cream);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--honey);
}

.header-copy {
  color: var(--ink);
  background: var(--honey);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(700px, calc(100vh - 110px));
  padding: clamp(34px, 5vw, 78px) 0 38px;
}

.hero::before {
  position: absolute;
  right: -8vw;
  bottom: 0;
  z-index: -1;
  width: 62vw;
  height: 42vh;
  min-height: 300px;
  content: "";
  background:
    linear-gradient(0deg, rgba(36, 66, 40, 0.92), rgba(36, 66, 40, 0.3) 66%, transparent),
    repeating-linear-gradient(90deg, rgba(47, 29, 19, 0.3) 0 16px, transparent 16px 72px);
  clip-path: polygon(0 72%, 9% 42%, 18% 66%, 30% 28%, 43% 66%, 55% 34%, 68% 64%, 82% 38%, 100% 70%, 100% 100%, 0 100%);
  opacity: 0.7;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--water);
}

.hero h1,
.section-heading h2,
.vibe-panel h2,
.proof-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.7rem, 10vw, 8.7rem);
  text-shadow:
    4px 4px 0 var(--honey),
    10px 10px 0 rgba(47, 29, 19, 0.18);
}

.hero-copy {
  min-width: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(28, 19, 12, 0.84);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  font-weight: 650;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.primary-action,
.secondary-action,
.game-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 950;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-action,
.game-button {
  color: var(--cream);
  background: var(--leaf);
  box-shadow: 6px 6px 0 var(--ink);
}

.secondary-action,
.game-button.secondary {
  color: var(--ink);
  background: var(--honey);
  box-shadow: 6px 6px 0 var(--ink);
}

.primary-action:hover,
.secondary-action:hover,
.game-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  max-width: 650px;
}

.hero-stats span {
  min-height: 76px;
  padding: 12px;
  border: 2px solid rgba(47, 29, 19, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 241, 198, 0.66);
  box-shadow: 0 10px 30px rgba(47, 29, 19, 0.09);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fur);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(430px, 100%);
  transform-style: preserve-3d;
  animation: gentle-bob 5.5s ease-in-out infinite;
}

@keyframes gentle-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.poster-frame {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow:
    16px 16px 0 var(--bark-dark),
    var(--shadow);
}

.main-bear {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.03);
}

.token-face {
  position: absolute;
  right: -34px;
  bottom: 48px;
  width: clamp(116px, 13vw, 166px);
  height: clamp(116px, 13vw, 166px);
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    8px 8px 0 var(--honey),
    0 18px 45px rgba(47, 29, 19, 0.24);
  animation: spin-pop 7s ease-in-out infinite;
}

@keyframes spin-pop {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.07);
  }
}

.stamp {
  position: absolute;
  top: 20px;
  left: -36px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--cream);
  background: var(--danger);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-12deg);
  text-align: center;
  text-transform: uppercase;
}

.stamp span {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 0.85;
}

.stamp small {
  display: block;
  margin-top: -22px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ticker-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 3px solid var(--ink);
  color: var(--cream);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  padding: 0 28px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.45rem, 4vw, 3rem);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span:nth-child(even) {
  color: var(--honey);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.manifest,
.proof,
.game-section {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.vibe-panel h2,
.proof-copy h2 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  text-shadow: 3px 3px 0 rgba(242, 186, 72, 0.62);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.55;
}

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.meme-card {
  min-height: 300px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 241, 198, 0.9), rgba(248, 223, 170, 0.78)),
    var(--paper);
  box-shadow: 8px 8px 0 rgba(47, 29, 19, 0.9);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.meme-card:hover {
  transform: translate(-3px, -5px) rotate(-1deg);
  box-shadow: 12px 12px 0 rgba(47, 29, 19, 0.92);
}

.meme-card:nth-child(2n):hover {
  transform: translate(-3px, -5px) rotate(1deg);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--cream);
  background: var(--fur);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
}

.meme-card h3 {
  margin: 68px 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.meme-card p {
  margin: 0;
  color: rgba(28, 19, 12, 0.76);
  font-weight: 650;
  line-height: 1.45;
}

.vibes {
  position: relative;
  z-index: 2;
  min-height: 770px;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(36, 66, 40, 0.93), rgba(28, 19, 12, 0.92)),
    url("assets/little-john-face.png") center / 280px repeat;
  background-blend-mode: multiply;
}

.vibes::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(242, 186, 72, 0.14) 0 2px, transparent 2px 120px),
    linear-gradient(0deg, rgba(255, 241, 198, 0.08) 0 2px, transparent 2px 118px);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.giant-lines {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  opacity: 0.28;
  pointer-events: none;
}

.giant-lines span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 241, 198, 0.8);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(var(--shift, -6vw));
}

.giant-lines span:nth-child(2) {
  --shift: 12vw;
}

.giant-lines span:nth-child(3) {
  --shift: -18vw;
}

.vibe-panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border: 2px solid rgba(255, 241, 198, 0.5);
  border-radius: var(--radius);
  background: rgba(28, 19, 12, 0.72);
  box-shadow: 12px 12px 0 rgba(242, 186, 72, 0.82);
  backdrop-filter: blur(10px);
}

.vibe-panel .eyebrow {
  color: var(--honey);
}

.vibe-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 241, 198, 0.86);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.6;
}

.meter-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.meter-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meter-row i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 198, 0.28);
  border-radius: 999px;
  background: rgba(255, 241, 198, 0.14);
}

.meter-row i::before {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--honey), var(--leaf-bright), var(--sky));
  transform-origin: left;
  animation: meter-fill 1.2s ease both;
}

@keyframes meter-fill {
  from {
    transform: scaleX(0);
  }
}

.proof {
  color: var(--cream);
}

.proof::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(28, 19, 12, 0.06), rgba(28, 19, 12, 0.72)),
    radial-gradient(circle at 80% 0, rgba(242, 186, 72, 0.34), transparent 24rem),
    var(--leaf);
}

.proof-copy {
  max-width: 760px;
}

.proof-copy .eyebrow {
  color: var(--honey);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.proof-item {
  min-height: 150px;
  padding: 18px;
  border: 2px solid rgba(255, 241, 198, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 241, 198, 0.12);
  backdrop-filter: blur(8px);
}

.proof-item span {
  display: block;
  color: rgba(255, 241, 198, 0.7);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-top: 42px;
  color: var(--honey);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.game-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 217, 154, 0.94), rgba(143, 209, 217, 0.72)),
    repeating-linear-gradient(45deg, rgba(93, 53, 32, 0.08) 0 2px, transparent 2px 18px);
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
  align-items: stretch;
}

.game-panel,
.game-hud {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--bark-dark);
  background: rgba(255, 241, 198, 0.78);
}

.game-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

#gameCanvas {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #89cdd5;
  cursor: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--cream);
  background: rgba(28, 19, 12, 0.56);
  text-align: center;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.game-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.game-overlay strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--ink);
}

.game-overlay span {
  max-width: 440px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.game-hud {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.hud-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 2px solid rgba(47, 29, 19, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
}

.hud-row span {
  color: rgba(28, 19, 12, 0.68);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hud-row strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.game-button {
  width: 100%;
  margin-top: 4px;
  font: inherit;
  font-weight: 950;
}

.game-tip {
  margin: auto 0 0;
  color: rgba(28, 19, 12, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 26px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 241, 198, 0.8);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .game-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    width: min(520px, 92%);
  }

  .manifest-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-hud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-tip {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    gap: 8px;
    overflow: hidden;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 2px;
    min-width: 0;
  }

  .nav-links a,
  .header-cta,
  .header-copy {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    flex: 1;
    justify-content: center;
    margin-left: auto;
  }

  .header-actions {
    gap: 6px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 14.2vw, 5.15rem);
  }

  .hero-stats,
  .manifest-grid,
  .proof-strip,
  .game-hud {
    grid-template-columns: 1fr;
  }

  .token-face {
    right: -8px;
    bottom: 24px;
  }

  .stamp {
    left: -8px;
    width: 94px;
    height: 94px;
  }

  .stamp span {
    font-size: 1.65rem;
  }

  .meme-card {
    min-height: 240px;
  }

  .meme-card h3 {
    margin-top: 42px;
  }

  .game-panel {
    min-height: 240px;
  }

  .game-overlay strong {
    font-size: clamp(2.4rem, 16vw, 4.4rem);
  }
}

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