:root {
  --bg: #070a14;
  --bg-2: #0d1020;
  --panel: rgba(13, 18, 38, 0.82);
  --panel-solid: #11162b;
  --ink: #ecfbff;
  --muted: #9fb3c7;
  --cyan: #27e6f4;
  --cyan-2: #1599ff;
  --pink: #ff2aa4;
  --pink-2: #b63cff;
  --line: rgba(39, 230, 244, 0.22);
  --line-pink: rgba(255, 42, 164, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(39, 230, 244, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(255, 42, 164, 0.18), transparent 34rem),
    linear-gradient(135deg, #060912 0%, #080b16 44%, #0f0a19 100%);
  color: var(--ink);
  font-family: "Chakra Petch", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 78%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0) 4px,
    rgba(255, 255, 255, 0.8) 5px
  );
  mix-blend-mode: overlay;
}

.site-glow {
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

.site-glow--cyan {
  left: -5rem;
  top: 20rem;
  background: var(--cyan);
}

.site-glow--pink {
  right: -4rem;
  bottom: 18rem;
  background: var(--pink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-bottom-color: var(--line-pink);
  background: rgba(7, 10, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(39, 230, 244, 0.6));
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.62rem, 1.2vw, 0.8rem);
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.42em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(39, 230, 244, 0.1);
}

.site-nav .nav-cta {
  color: #07101c;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 24px rgba(39, 230, 244, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding-top: 92px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: "Press Start 2P", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6.35rem);
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgba(255, 42, 164, 0.24);
}

.hero-text,
.section-heading p,
.panel > p,
.contact-card > div > p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #050710;
  background: linear-gradient(135deg, var(--cyan) 0%, #6df7ff 45%, var(--pink) 100%);
  box-shadow: 0 14px 35px rgba(39, 230, 244, 0.28), inset 0 -4px 0 rgba(0,0,0,0.22);
}

.button--ghost {
  color: var(--ink);
  border: 1px solid var(--line-pink);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--pink);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(39, 230, 244, 0.28);
  border-right-color: rgba(255, 42, 164, 0.4);
  border-bottom-color: rgba(255, 42, 164, 0.4);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(39, 230, 244, 0.09), rgba(255, 42, 164, 0.08)),
    rgba(8, 12, 25, 0.84);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  border: 3px solid var(--cyan);
  pointer-events: none;
}

.hero-card::before {
  top: -10px;
  left: -10px;
  border-right: 0;
  border-bottom: 0;
}

.hero-card::after {
  right: -10px;
  bottom: -10px;
  border-left: 0;
  border-top: 0;
  border-color: var(--pink);
}

.hero-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 400px;
  border-radius: 22px;
  background:
    radial-gradient(circle, rgba(39,230,244,0.16), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  overflow: hidden;
}

.hero-logo-wrap img {
  width: min(460px, 100%);
  filter: drop-shadow(0 0 30px rgba(39,230,244,0.28));
}

.terminal-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(39, 230, 244, 0.24);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
}

.terminal-card p {
  margin: 10px 0 0;
}

.terminal-card b {
  color: var(--ink);
}

.terminal-top {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.terminal-top span:nth-child(2) {
  background: var(--pink);
}

.terminal-top span:nth-child(3) {
  background: var(--pink-2);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(39, 230, 244, 0.2);
  background: rgba(255,255,255,0.03);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  animation: scroll-left 26s linear infinite;
}

.marquee span {
  color: var(--cyan);
  font-family: "Press Start 2P", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(39, 230, 244, 0.5);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding-top: 90px;
  padding-bottom: 28px;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.game-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.game-card,
.news-card,
.panel,
.stacked-cards article,
.timeline article,
.contact-card {
  border: 1px solid rgba(39, 230, 244, 0.22);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.game-card,
.news-card,
.timeline article {
  border-radius: 24px;
  overflow: hidden;
}

.game-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 42, 164, 0.5);
}

.game-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.26;
  z-index: -1;
}

.game-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  object-fit: contain;
  z-index: 0;
}

/* A card with a logo/cover: neutral fallback backdrop (JS replaces it with the
   image's most prominent colour), and hide the centred art badge so it doesn't
   sit on top of the logo — the tag still shows below, in the card body. */
.game-art--image { background: #0c1020; }
.game-art--image span { display: none; }

.game-art span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  font-family: "Press Start 2P", monospace;
  font-size: 0.7rem;
}

.game-art--one {
  background: linear-gradient(135deg, rgba(39,230,244,0.68), rgba(15,153,255,0.22), rgba(255,42,164,0.5));
}

.game-art--two {
  background: linear-gradient(135deg, rgba(255,42,164,0.62), rgba(182,60,255,0.34), rgba(39,230,244,0.45));
}

.game-art--three {
  background: linear-gradient(135deg, rgba(16,255,185,0.52), rgba(39,230,244,0.34), rgba(255,42,164,0.48));
}

.game-content,
.news-card,
.timeline article {
  padding: 24px;
}

.tag,
.timeline span,
.news-card time {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Press Start 2P", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.game-content h3,
.news-card h3,
.timeline h3,
.stacked-cards h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.game-content p,
.news-card p,
.timeline p,
.stacked-cards p,
.feature-list span {
  color: var(--muted);
  line-height: 1.62;
}

.game-content a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--pink);
  font-weight: 800;
}

.game-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.game-pager-info {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.game-pager .button { min-height: 42px; padding: 0 18px; }

/* ---- /games catalogue + /games/<slug> info page -------------------------- */
.games-more { margin-top: 26px; }
.link-arrow {
  color: var(--cyan);
  font-weight: 800;
  font-family: "Press Start 2P", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.link-arrow:hover { color: var(--pink); }
.games-empty { color: var(--muted); grid-column: 1 / -1; }

.game-detail { width: min(900px, 100%); }
.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}
.game-hero-img {
  width: 100%;
  box-sizing: border-box;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(39, 230, 244, 0.22);
  box-shadow: var(--shadow);
  background: #0c1020; /* neutral fallback; JS replaces it with the image's colour */
  aspect-ratio: 16 / 10;
  object-fit: contain;
}
.game-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.game-lede { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

.game-body { width: min(760px, 100%); margin-bottom: 30px; }
.game-body p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.game-facts { margin-bottom: 30px; }
.game-facts h2,
.game-gallery h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.game-facts ul { list-style: none; display: grid; gap: 8px; padding: 0; }
.game-facts li { color: var(--muted); padding-left: 18px; position: relative; }
.game-facts li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }

.game-links { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.game-gallery { margin-bottom: 34px; }
.game-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.game-gallery-grid img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(39, 230, 244, 0.22);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.game-back { display: inline-flex; color: var(--cyan); font-weight: 800; }
.game-back:hover { color: var(--pink); }

.game-missing { text-align: center; padding: 40px 0; }
.game-missing h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.game-missing a { color: var(--cyan); font-weight: 800; }

@media (max-width: 720px) {
  .game-hero { grid-template-columns: 1fr; }
}
.game-pager .button:disabled { opacity: 0.4; cursor: default; transform: none; }

.news-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--pink);
  font-weight: 800;
}

.split {
  padding-top: 92px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
}

.panel {
  padding: 34px;
  border-radius: var(--radius);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(255,255,255,0.035);
  border-radius: 14px;
}

.feature-list strong {
  color: var(--ink);
  text-transform: uppercase;
}

.stacked-cards {
  display: grid;
  gap: 14px;
}

.stacked-cards article {
  padding: 24px;
  border-radius: 22px;
  transition: transform 180ms ease;
}

.stacked-cards article:hover {
  transform: translateX(-6px);
}

.stacked-cards span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #06101c;
  background: var(--cyan);
  border-radius: 12px;
  font-weight: 900;
}

.stacked-cards article:nth-child(2) span {
  background: var(--pink);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  min-height: 240px;
}

.news-card {
  min-height: 220px;
}

.contact {
  padding-top: 92px;
  padding-bottom: 76px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(39,230,244,0.14), transparent 32rem),
    radial-gradient(circle at 100% 70%, rgba(255,42,164,0.14), transparent 28rem),
    var(--panel);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(39, 230, 244, 0.24);
  border-radius: 14px;
  background: rgba(0,0,0,0.22);
  padding: 14px 15px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,42,164,0.12);
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 60px auto 28px;
  padding: 40px 0 0;
  color: var(--muted);
  border-top: 1px solid rgba(39, 230, 244, 0.16);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-tagline {
  margin: 12px 0 0;
  max-width: 30ch;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.footer-col a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-bottom p { margin: 0; }

/* Sub-page prose (About / legal / creators) */
.prose { width: min(760px, 100%); }
.prose h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin: 1.6em 0 0.5em;
  text-transform: none;
  letter-spacing: -0.02em;
}
.prose p, .prose li { color: var(--muted); line-height: 1.75; }
.prose a { color: var(--cyan); }
.notice {
  margin: 0 0 26px;
  padding: 12px 16px;
  border: 1px dashed var(--line-pink);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}
.prose h2 { scroll-margin-top: 96px; }
.prose h3 {
  font-size: 1.05rem;
  margin: 1.4em 0 0.4em;
  text-transform: none;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
}
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: 4px 0; }
.legal-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.toc {
  margin: 0 0 32px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.toc h2 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 30px; }
.toc li { margin: 3px 0; break-inside: avoid; }
.toc a { color: var(--muted); font-size: 0.92rem; }
.toc a:hover { color: var(--ink); }
@media (max-width: 600px) { .toc ol { columns: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }
.reveal-delay-3 { transition-delay: 320ms; }

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .game-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 10, 20, 0.95);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .site-nav a {
    width: 100%;
  }

  .section-pad {
    width: min(100% - 24px, var(--max));
  }

  .hero-stats,
  .game-grid,
  .news-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    min-height: 270px;
  }

  .panel,
  .contact-card {
    padding: 24px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@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;
  }
}
