@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Syne:wght@400;500;600;700;800&family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* ========================================
   Overthrow Chess — LookAway-Inspired Theme
   ======================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #1a1a1a;
  --bg-card: rgba(26, 26, 26, 0.7);
  --surface: rgba(30, 30, 30, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #f5f5f5;
  --text-dim: rgba(245, 245, 245, 0.7);
  --text-faint: rgba(245, 245, 245, 0.45);
  --accent: #c084fc;        /* purple */
  --accent-warm: #fb923c;   /* orange */
  --accent-teal: #5eead4;   /* teal */
  --ok: #86efac;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1100px;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Inter Tight", "Avenir Next", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------- Atmospheric gradient blobs ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(251, 146, 60, 0.18), transparent 70%),
    radial-gradient(40% 40% at 75% 20%, rgba(255, 120, 20, 0.14), transparent 65%),
    radial-gradient(45% 45% at 60% 75%, rgba(251, 146, 60, 0.12), transparent 70%),
    radial-gradient(35% 35% at 30% 80%, rgba(255, 160, 60, 0.10), transparent 60%);
  filter: blur(40px);
  animation: blobDrift 25s ease-in-out infinite alternate;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  color: var(--accent-teal);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   Navigation — pill-shaped floating bar
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 6px 8px 6px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.brand img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

/* Mobile hamburger — hidden, links shown inline instead */
.nav-toggle {
  display: none;
}

/* ========================================
   Hero
   ======================================== */
.hero-icon {
  display: block;
  margin: 0 auto 24px;
  width: 92px;
  height: 92px;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero {
  min-height: calc(100svh - 200px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.hero .container {
  position: relative;
  max-width: 860px;
}

/* Shorter hero for subpages (tutorial, download, team) */
.hero-sub {
  min-height: auto;
  padding: 80px 0 40px;
}

.hero-sub h1.display {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.2);
}

h1.display {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 750;
  margin: 0 0 80px;
  text-wrap: balance;
  transform-origin: top;
}

h1.display .accent {
  color: inherit;
}

.lede {
  margin: 28px auto 0;
  max-width: 680px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.lede strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero entrance */
.hero .eyebrow,
.hero .display,
.hero .lede,
.hero .hero-cta {
  opacity: 0;
  animation: riseFade 0.7s ease forwards;
}
.hero .display { animation: riseFadeStretch 0.7s ease forwards; animation-delay: 0.08s; }
.hero .lede { animation-delay: 0.16s; }
.hero .hero-cta { animation-delay: 0.24s; }

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border-hover);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.primary {
  background: #ffffff;
  color: #0a0a0a;
  border-color: transparent;
  font-weight: 700;
}

.btn.primary:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* ========================================
   Sections
   ======================================== */
section {
  padding: 80px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 700;
  text-wrap: balance;
}

.section-head p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--text-dim);
  font-size: 16px;
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 16px;
}

.prose p { margin: 0 0 16px; }

/* ========================================
   Card surfaces
   ======================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--border-hover);
}

.diagram-card,
.feature,
.shot-card,
.team-row,
.dl-card,
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ========================================
   Overview — Split-Screen Narrative
   ======================================== */
.overview {
  position: relative;
  padding-bottom: 0;
}

.overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* Eyebrow label */
.overview-eyebrow {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.25);
  margin-bottom: 36px;
}

/* Unified split container */
.overview-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    /* burnished gold light pooling on the right */
    radial-gradient(ellipse 55% 70% at 78% 50%, rgba(200, 160, 60, 0.219), transparent),
    radial-gradient(ellipse 40% 60% at 65% 70%, rgba(180, 140, 50, 0.05), transparent),
    /* warm sepia shadow anchoring the left */
    radial-gradient(ellipse 50% 65% at 22% 45%, rgba(180, 120, 60, 0.144), transparent),
    /* base */
    linear-gradient(135deg, #0c0c0e, #0e0d0c 60%, #0c0b0a);
}

/* Panels — transparent, inherit parent gradient */
.split-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  background: transparent;
}

.split-content {
  max-width: 400px;
}

.split-heading {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 31px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-wrap: balance;
}

.split-sub {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Problem — readable gray */
.split-problem .split-heading {
  color: rgba(255, 255, 255, 0.88);
}

.split-problem .split-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Solution — burnished gold */
.split-solution .split-heading {
  color: rgba(230, 200, 130, 0.9);
}

.split-solution .split-sub {
  color: rgba(220, 190, 120, 0.58);
}

/* Vertical divider — subtle */
.split-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1px;
  position: relative;
  background: transparent;
}

.divider-line {
  flex: 1;
  width: 1px;
  background: rgba(255, 255, 255, 0.04);
}

/* Knight icon — soft, diffused glow */
.divider-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  margin: 0 -18px;
  border-radius: 50%;
  background: rgba(18, 16, 12, 0.9);
  border: 1px solid rgba(200, 160, 60, 0.15);
  font-size: 29px;
  color: rgba(220, 180, 80, 0.6);
  box-shadow: 0 0 20px rgba(200, 160, 60, 0.08), 0 0 40px rgba(200, 160, 60, 0.04);
  flex-shrink: 0;
}

/* ========================================
   Mission Statement
   ======================================== */
.mission {
  padding: 80px 0;
}

.mission-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.mission-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(226, 159, 15);
  margin-bottom: 24px;
}

.mission-text {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.644);
  margin: 0;
  text-wrap: pretty;
}

/* ========================================
   Architecture diagram
   ======================================== */
.diagram-card {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.diagram-card img {
  width: 100%;
  border-radius: 14px;
}

.caption {
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 13px;
}

/* ========================================
   Checklist
   ======================================== */
.checklist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-dim);
  font-size: 15px;
  backdrop-filter: blur(10px);
}

.checklist li::before {
  content: "✓ ";
  color: var(--ok);
  font-weight: 700;
}

/* ========================================
   Feature grid
   ======================================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* ========================================
   Screenshot grid
   ======================================== */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot-card {
  border-radius: var(--radius);
  padding: 12px;
}

.shot-card img {
  border-radius: 28px;
  width: 100%;
}

.shot-card h3 {
  font-family: var(--font-display);
  margin: 10px 4px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.shot-card p {
  margin: 0 4px 4px;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.45;
}

/* ========================================
   Tech stack chips
   ======================================== */
.tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  row-gap: 4px;
  margin-top: 24px;
}

.chip {
  border: 1px solid var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.chip-break {
  flex-basis: 100%;
  height: 0;
}

/* ========================================
   Team members
   ======================================== */
.team-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}

.team-row.reverse {
  grid-template-columns: 1fr 180px;
}

.team-row.reverse .headshot {
  order: 2;
}

.headshot {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  border: 1px solid var(--border-hover);
  object-fit: cover;
  background: var(--bg-elev);
}

.team-row h3 {
  font-family: var(--font-display);
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-row .role {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-row .bio {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.65;
}

.team-row .contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.team-row .contact-links a {
  padding: 8px 14px;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.team-row .contact-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   Download page
   ======================================== */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dl-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.dl-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.dl-card .platform-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.dl-card h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.dl-card p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.55;
}

.meta {
  margin-top: 12px;
  color: var(--text-faint);
  font-size: 12px;
}

/* ========================================
   Accordion (Tutorial)
   ======================================== */
.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.accordion-item:hover,
.accordion-item.open {
  border-color: var(--border-hover);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
}

.accordion-trigger .step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}

.accordion-trigger .chevron {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-faint);
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-trigger .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 300px;
}

.accordion-content {
  padding: 0 24px 22px 80px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ========================================
   Limitations callout
   ======================================== */
.callout {
  background: rgba(251, 146, 60, 0.06);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 16px;
}

.callout h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--accent-warm);
}

.callout ul {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner .links {
  display: flex;
  gap: 18px;
}

.footer-inner .links a {
  transition: color 0.2s;
}

.footer-inner .links a:hover {
  color: var(--text);
}

/* ========================================
   Animations
   ======================================== */
@keyframes blobDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 3%, 0) scale(1.05); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.02); }
}

@keyframes riseFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes riseFadeStretch {
  from { opacity: 0; transform: translateY(14px) scaleY(1); }
  to   { opacity: 1; transform: translateY(0) scaleY(1.3); }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .nav-inner { gap: 8px; }
  .nav-links a { padding-inline: 10px; }
}

@media (max-width: 900px) {
  .nav-links a { padding: 7px 10px; font-size: 13px; }

  .features { grid-template-columns: 1fr 1fr; }
  .screenshot-grid { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: 1fr; }

  /* Split-screen → stacked */
  .overview-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-divider {
    flex-direction: row;
    width: 100%;
    height: 1px;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    width: auto;
  }

  .divider-icon {
    margin: -18px 0;
  }

  .split-panel {
    padding: 44px 28px;
  }

  .hero { padding: 60px 0 40px; }
  .hero-sub { padding: 60px 0 32px; }

  .team-row,
  .team-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .team-row.reverse .headshot { order: -1; }
  .headshot { margin: 0 auto; }
  .team-row .contact-links { justify-content: center; }

  section { padding: 60px 0; }

  .accordion-content { padding-left: 24px; }
}

@media (max-width: 620px) {
  .container { padding: 0 16px; }

  .brand span { display: none; }
  .nav-cta { display: none; }
  .nav-links a { padding: 6px 8px; font-size: 12px; }

  .features { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; }

  .hero { padding: 40px 0 32px; }
  .hero-sub { padding: 40px 0 24px; }
  .lede { font-size: 15px; }

  h1.display { font-size: clamp(36px, 9vw, 52px); }

  .accordion-trigger { padding: 18px 16px; font-size: 15px; gap: 12px; }
  .accordion-trigger .step-num { width: 34px; height: 34px; font-size: 14px; border-radius: 10px; }
  .accordion-content { padding: 0 16px 18px 62px; font-size: 14px; }
}

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