:root {
  --cream: #f7edcf;
  --cream-soft: #fbf1d2;
  --cream-deep: #f0d9a2;
  --panel: #faedc6;
  --panel-green: #ece7c3;
  --brown-950: #110a05;
  --brown-900: #170d07;
  --brown-800: #261407;
  --brown-700: #42240e;
  --brown-text: #352111;
  --gold: #eab145;
  --gold-light: #ffe4a0;
  --amber: #d85b19;
  --amber-bright: #ff8a22;
  --teal: #1d6f63;
  --teal-soft: #5eb6a4;
  --blue: #1f6d93;
  --purple: #6842a4;
  --green: #3a7e56;
  --line: rgba(126, 83, 27, 0.28);
  --shadow: 0 7px 13px rgba(60, 35, 9, 0.22);
  --display: "Cooper Black", "Rockwell Extra Bold", Georgia, serif;
  --condensed: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 3%, rgba(255, 245, 204, 0.98) 0 105px, transparent 106px),
    linear-gradient(135deg, #fff7df 0%, var(--cream) 42%, #f2dda7 100%);
  color: var(--brown-text);
  font-family: var(--sans);
  padding: 10px 10px 14px;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 3px solid var(--teal-soft);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold-light);
  color: var(--brown-950);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 1055px);
  margin: 0 auto;
}

.masthead,
.site-footer {
  color: var(--cream-soft);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 164, 39, 0.13), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(54, 170, 154, 0.08), transparent 31%),
    var(--brown-950);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 82, 0.12);
}

.masthead {
  border-radius: 28px;
  padding: 28px 18px 12px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 0 22px 20px 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 0 14px;
  color: #ffedbd;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:is(:hover, :focus-visible, .is-active)::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 457px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(218, 128, 32, 0.48);
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 21%, rgba(239, 147, 31, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 15% 73%, rgba(86, 174, 160, 0.1), transparent 28%),
    radial-gradient(circle at 72% 38%, rgba(255, 128, 22, 0.1), transparent 25%),
    linear-gradient(180deg, #130b06 0%, #0d0805 72%, #1b0d06 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 218, 125, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle at 9% 19%, rgba(255, 213, 110, 0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 21% 73%, rgba(255, 110, 31, 0.56) 0 1px, transparent 1.7px),
    radial-gradient(circle at 38% 14%, rgba(255, 228, 160, 0.45) 0 1px, transparent 1.7px),
    radial-gradient(circle at 31% 47%, rgba(67, 181, 166, 0.35) 0 1px, transparent 1.8px);
  background-size: 120px 90px, 165px 125px, 94px 112px, 144px 80px;
  content: "";
  opacity: 0.75;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 10, 5, 0.95), rgba(17, 10, 5, 0) 22%);
  content: "";
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 64%;
  background-image: url("assets/hero-art.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
}

.hero-copy {
  width: 57%;
  padding: 40px 0 42px 42px;
}

.hero h1 {
  margin: 0;
  color: #fff0bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 49px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.36);
}

.hero h1 span {
  color: var(--teal-soft);
}

.hero p {
  max-width: 410px;
  margin: 25px 0 0;
  color: #fff2c8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 33px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 0 19px;
  border: 1px solid rgba(255, 216, 138, 0.23);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 5px 12px rgba(0, 0, 0, 0.3);
  color: #fff3cf;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn svg {
  width: 25px;
  height: 25px;
}

.btn path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.btn-amber {
  background: linear-gradient(180deg, #e96a20 0%, #b93d0f 100%);
}

.btn-teal {
  background: linear-gradient(180deg, #2d877a 0%, #1c665e 100%);
}

.btn:is(:hover, :focus-visible) {
  filter: saturate(1.12) brightness(1.04);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 16px rgba(0, 0, 0, 0.35);
}

.panel {
  position: relative;
  margin-top: 5px;
  border: 1px solid rgba(164, 112, 43, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 250, 224, 0.88), transparent 31%),
    radial-gradient(circle at 88% 100%, rgba(223, 155, 45, 0.13), transparent 37%),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.games-panel {
  padding: 17px 38px 19px;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--brown-text);
  font-family: var(--condensed);
  font-size: 39px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-title svg {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
}

.section-title path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.stripe-icon {
  position: relative;
  width: 39px;
  height: 28px;
  flex: 0 0 auto;
}

.stripe-icon,
.stripe-icon::before,
.stripe-icon::after {
  border-radius: 999px 0 0 999px;
  background: #e9601e;
}

.stripe-icon {
  box-shadow: inset 0 0 0 999px #e9601e;
}

.stripe-icon::before,
.stripe-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.stripe-icon::before {
  top: -10px;
  width: 43px;
  height: 8px;
  background: #ef9b23;
}

.stripe-icon::after {
  top: 10px;
  width: 35px;
  height: 8px;
  background: #2f8b76;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b94416;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.section-link svg {
  width: 21px;
  height: 21px;
}

.section-link path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.teal-link {
  color: #0f625b;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 17px;
}

.game-card {
  appearance: none;
  display: grid;
  grid-template-rows: 156px 1fr;
  height: 249px;
  overflow: hidden;
  border: 2px solid rgba(117, 70, 26, 0.65);
  border-radius: 13px;
  background: #150c07;
  box-shadow: var(--shadow);
  color: #ffeec0;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.game-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  background: #120b05;
}

.game-card-copy {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 9px 10px 11px;
}

.game-card strong {
  color: #fff0bf;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.game-card span span {
  color: #fff6d6;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.28;
}

.game-card:is(:hover, :focus-visible):not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 18px rgba(68, 39, 9, 0.28);
}

.is-tapped {
  filter: brightness(1.08) saturate(1.08);
}

.wellness-panel {
  padding: 14px 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(253, 246, 210, 0.85), transparent 30%),
    radial-gradient(circle at 95% 22%, rgba(88, 153, 125, 0.13), transparent 28%),
    linear-gradient(180deg, #eee6bf 0%, #f2e2ae 100%);
}

.wellness-title {
  color: #352413;
}

.wellness-title svg {
  color: #267867;
}

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

.wellness-card {
  appearance: none;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  height: 200px;
  padding: 11px 10px;
  overflow: hidden;
  border: 1px solid rgba(91, 102, 65, 0.23);
  border-radius: 13px;
  background:
    radial-gradient(circle at 6% 0%, rgba(255, 255, 239, 0.9), transparent 35%),
    #f8edc9;
  box-shadow: 0 3px 8px rgba(80, 58, 23, 0.2);
  color: #1f1c13;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.wellness-card img {
  width: 84px;
  height: 166px;
  align-self: end;
  border-radius: 11px;
  object-fit: cover;
}

.wellness-placeholder-art {
  display: grid;
  place-items: center;
  align-self: end;
  width: 84px;
  height: 166px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 25%, rgba(94, 182, 164, 0.26), transparent 42%),
    linear-gradient(180deg, #f3e8bf, #dfe7c6);
  color: #247768;
}

.wellness-placeholder-art svg {
  width: 58px;
  height: 58px;
}

.wellness-placeholder-art path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.wellness-copy {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.38;
}

.wellness-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
}

.wellness-copy .status-line {
  margin-top: -3px;
  color: #18140d;
  font-size: 13px;
}

.wellness-copy .status-line::before {
  content: "- ";
}

.purple {
  color: var(--purple);
}

.green {
  color: #2d7653;
}

.teal {
  color: #126a61;
}

.blue {
  color: #176399;
}

.badge {
  justify-self: start;
  align-self: end;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.badge-purple {
  background: #dac6ef;
  color: #55339b;
}

.badge-green {
  background: #b7daa4;
  color: #22603b;
}

.badge-blue {
  background: #9ed6e8;
  color: #155e82;
}

.wellness-card:is(:hover, :focus-visible):not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(80, 58, 23, 0.2);
}

.utility-panel {
  padding: 8px 34px 10px;
}

.utility-title {
  margin-bottom: 5px;
  font-size: 36px;
}

.utility-title svg {
  width: 36px;
  height: 36px;
  color: #48270e;
}

.utility-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 15px;
}

.utility-card {
  appearance: none;
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 13px;
  min-height: 152px;
  padding: 12px;
  border: 1px solid rgba(134, 93, 42, 0.32);
  border-radius: 13px;
  background:
    radial-gradient(circle at 7% 4%, rgba(255, 253, 232, 0.9), transparent 42%),
    #f8edc9;
  box-shadow: 0 4px 10px rgba(80, 58, 23, 0.16);
  color: #2b1a0c;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.utility-card:is(:hover, :focus-visible):not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(80, 58, 23, 0.2);
}

.is-disabled {
  cursor: not-allowed;
}

.utility-card-art {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 126px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 247, 216, 0.86), rgba(231, 205, 139, 0.62));
}

.education-art img {
  width: 88px;
  height: 126px;
  object-fit: cover;
}

.toolbox-art img {
  width: 116px;
  height: 72px;
  object-fit: cover;
  object-position: left center;
}

.utility-card-copy {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.34;
}

.utility-card-copy strong {
  color: #2f1b0d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.04;
}

.tool-category {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(29, 111, 99, 0.13);
  color: #126a61;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.tool-tagline {
  color: #654114;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.12;
}

.tool-detail {
  color: #4a3923;
  font-size: 11.5px;
}

.xp-art {
  background:
    linear-gradient(135deg, rgba(120, 184, 237, 0.24), rgba(248, 238, 193, 0.82)),
    #f8edc9;
}

.xp-window {
  width: 86px;
  overflow: hidden;
  border: 2px solid #1959b7;
  border-radius: 7px;
  background: #f9fbec;
  box-shadow: 4px 5px 0 rgba(71, 42, 12, 0.14);
}

.xp-titlebar {
  display: block;
  padding: 4px 6px;
  background: linear-gradient(180deg, #47a9ff, #1f63c9);
  color: #fff8c5;
  font-size: 10px;
  font-weight: 900;
}

.xp-body {
  display: grid;
  gap: 9px;
  padding: 10px 8px;
}

.xp-file {
  width: 35px;
  height: 42px;
  border: 2px solid #db8b23;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff4ae 0 68%, #f3c254 69%);
}

.xp-progress {
  width: 100%;
  height: 10px;
  border: 1px solid #6a8f2c;
  border-radius: 2px;
  background:
    linear-gradient(90deg, #74bd39 0 68%, transparent 68%),
    #e9f4d7;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) minmax(230px, 1fr) minmax(120px, 0.65fr) minmax(230px, 1fr);
  gap: 28px;
  margin-top: 5px;
  padding: 16px 36px 22px;
  border-radius: 28px;
}

.footer-brand p {
  max-width: 245px;
  margin: 8px 0 0 20px;
  color: #f9ddb0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.38;
}

.footer-column {
  min-height: 66px;
  padding-left: 26px;
  border-left: 1px solid rgba(234, 177, 69, 0.55);
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #ffe4a0;
  font-size: 16px;
  font-weight: 900;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #f9ddb0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-column svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.footer-column path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links :is(a, button) {
  appearance: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(238, 166, 56, 0.32);
  border-radius: 9px;
  background: linear-gradient(160deg, rgba(228, 141, 34, 0.28), rgba(92, 44, 10, 0.44));
  box-shadow: inset 0 0 0 1px rgba(255, 244, 196, 0.08);
  color: #ffe3a4;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.social-links :is(a, button):nth-child(3) {
  background: linear-gradient(160deg, #346f9b, #204462);
  color: #fff2c4;
}

.social-links :is(a, button):nth-child(4) {
  background: linear-gradient(160deg, #6a3a16, #201006);
  color: #fff0bb;
  font-size: 13px;
}

.social-links button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  margin: 0;
  color: #f1c782;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-copy {
    width: 56%;
    padding-left: 32px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-art {
    width: 62%;
  }

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

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

  .utility-grid {
    grid-template-columns: 1fr;
  }

  .utility-card {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding: 8px;
  }

  .masthead {
    padding: 18px 12px 12px;
  }

  .topbar {
    padding: 0 8px 16px;
  }

  .site-logo {
    height: 42px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }

  .hero {
    min-height: 625px;
  }

  .hero-copy {
    width: 100%;
    padding: 30px 25px 295px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-art {
    top: auto;
    width: 100%;
    height: 54%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 21%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 21%, #000 100%);
  }

  .hero::after {
    top: auto;
    width: 100%;
    height: 59%;
    background: linear-gradient(180deg, rgba(17, 10, 5, 0.95), rgba(17, 10, 5, 0) 28%);
  }

  .games-panel,
  .wellness-panel,
  .utility-panel {
    padding: 18px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 36px;
  }

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

  .wellness-grid {
    grid-template-columns: 1fr;
  }

  .utility-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .utility-card-art {
    min-height: 118px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px 24px 36px;
  }

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 680px;
  }

  .hero-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    grid-template-rows: 180px 1fr;
  }

  .game-card img {
    height: 180px;
  }

  .wellness-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .wellness-card img {
    width: 88px;
  }

  .wellness-placeholder-art {
    width: 88px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

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