:root {
  --bg-0: #08110c;
  --bg-1: #0f1f16;
  --panel: rgba(9, 25, 17, 0.82);
  --panel-soft: rgba(13, 32, 22, 0.64);
  --line: rgba(151, 220, 164, 0.24);
  --line-strong: rgba(151, 220, 164, 0.48);
  --text-0: #f3ffe9;
  --text-1: #c7e7c4;
  --text-2: #95b69a;
  --mint: #84ffb0;
  --amber: #ffcb66;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --shadow-1: 0 10px 28px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 20px 52px rgba(0, 0, 0, 0.5);
  --parallax-offset: 0px;
  --container: min(1150px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-0);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(66, 161, 91, 0.22), transparent 65%),
    radial-gradient(900px 650px at 15% 0%, rgba(44, 108, 72, 0.34), transparent 68%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.home-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../img/background.jpg") center top / cover no-repeat;
  transform: translateY(var(--parallax-offset)) scale(1.08);
  filter: brightness(0.34) saturate(0.82);
}

.home-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 600px at 70% 10%, rgba(114, 193, 128, 0.2), transparent 70%),
    linear-gradient(180deg, rgba(6, 14, 10, 0.45) 0%, rgba(6, 14, 10, 0.88) 75%);
}

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

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

.container {
  width: min(var(--container), calc(100% - 24px));
  margin-inline: auto;
}

.container,
.topbar-inner,
.header-inner,
.site-nav,
.hero-creative,
.stack-card,
.contact-layout,
.footer-grid2,
.page-hero,
.hero,
.game-surface,
.banner,
.safety-slab {
  max-width: 100%;
}

.topbar-left,
.topbar-right,
.header-left,
.header-right,
.stack-body,
.footer-box,
.card,
.banner > div {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 14, 10, 0.9), rgba(7, 18, 12, 0.82));
  border-bottom: 1px solid rgba(132, 221, 153, 0.3);
}

.topbar {
  border-bottom: 1px solid rgba(151, 220, 164, 0.12);
  background:
    linear-gradient(90deg, rgba(18, 45, 30, 0.7), rgba(8, 22, 15, 0.4) 58%, rgba(18, 45, 30, 0.7));
}

.topbar-inner,
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-inner {
  min-height: 42px;
}

.topbar-left,
.topbar-right,
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right {
  flex-wrap: wrap;
}

.topbar-note,
.toplink {
  color: var(--text-2);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.toplink:hover {
  color: var(--mint);
}

.header-inner {
  min-height: 78px;
  justify-content: flex-start;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 8px 12px;
  border: 1px solid rgba(145, 235, 171, 0.35);
  border-radius: 999px;
  background: rgba(10, 28, 19, 0.72);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(132, 255, 176, 0.9), rgba(70, 170, 95, 0.85));
  box-shadow: 0 0 0 2px rgba(7, 22, 14, 0.8) inset, 0 0 0 1px rgba(141, 238, 168, 0.4);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 25, 14, 0.86);
}

.brand-name {
  font-size: 1.02rem;
  color: var(--text-0);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(11, 30, 20, 0.88);
  color: var(--text-0);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  gap: 7px;
  margin-left: 2px;
  margin-right: auto;
  padding: 6px;
  background:
    linear-gradient(140deg, rgba(10, 29, 19, 0.88), rgba(7, 20, 13, 0.85));
  border: 1px solid rgba(134, 234, 162, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(132, 236, 161, 0.08);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #c0e2c2;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: 200ms ease;
  border: 1px solid transparent;
  overflow-wrap: anywhere;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(124, 255, 164, 0.15);
  color: #d6ffe1;
  border-color: rgba(133, 244, 165, 0.42);
}

.header-right {
  display: none !important;
}

.wallet-pill {
  border: 1px solid var(--line-strong);
  background: rgba(12, 33, 22, 0.7);
  color: var(--text-1);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.86rem;
}

main {
  padding-bottom: 34px;
}

.page-hero,
.hero {
  margin-top: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(10, 27, 18, 0.78), rgba(7, 19, 13, 0.86));
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(106, 219, 132, 0.24), transparent 65%);
  animation: pulseGlow 7s ease-in-out infinite;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 7px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
}

h2 {
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  color: var(--text-1);
  max-width: 66ch;
}

.section {
  margin-top: 26px;
}

.section-head {
  margin-bottom: 14px;
}

.muted {
  color: var(--text-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.77rem;
  color: var(--text-1);
  background: rgba(11, 27, 19, 0.62);
}

.pill-strong {
  color: #062112;
  background: linear-gradient(120deg, var(--mint), #9de5aa);
  border-color: rgba(131, 244, 156, 0.55);
  font-weight: 700;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(133, 255, 183, 0.46);
  background: linear-gradient(130deg, #55d17e, #3dab63);
  color: #03200f;
}

.btn-ghost {
  background: rgba(10, 29, 19, 0.7);
  color: var(--text-1);
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  color: var(--mint);
}

.hero-actions,
.hero-actions-centered {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-creative {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.hero-main {
  border: 1px solid rgba(131, 234, 161, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(320px 180px at 20% 0%, rgba(105, 206, 130, 0.14), transparent 72%),
    linear-gradient(145deg, rgba(11, 31, 21, 0.84), rgba(8, 21, 14, 0.82));
  padding: 20px;
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero-pills span {
  border: 1px solid rgba(139, 241, 168, 0.34);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.74rem;
  color: #d7f1d9;
  background: rgba(14, 35, 23, 0.7);
}

.hero-side {
  border: 1px solid rgba(131, 234, 161, 0.3);
  border-radius: 20px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(13, 33, 22, 0.84), rgba(9, 23, 15, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.hero-side h3 {
  margin-bottom: 6px;
}

.hero-meter {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(136, 230, 160, 0.32);
  background: rgba(7, 18, 12, 0.9);
  overflow: hidden;
}

.hero-meter > span {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6dd88c, #9af0b5);
  animation: meterFlow 5s ease-in-out infinite;
}

.steps,
.card-grid,
.footer-grid2,
.footer-navgrid,
.achievement-grid,
.contact-layout,
.game-stack {
  display: grid;
  gap: 14px;
}

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

.step,
.card,
.banner,
.safety-slab,
.game-surface,
.achievement,
.faq-item,
.legal-card,
.contact-layout > * {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-1);
}

.step-num {
  font-size: 1.45rem;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  color: rgba(133, 255, 176, 0.75);
  margin-bottom: 8px;
}

.stack-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(10, 27, 18, 0.92), rgba(8, 21, 14, 0.86));
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

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

.stack-body {
  padding: 18px;
}

.stack-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.stack-icon,
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(126, 247, 158, 0.26), rgba(61, 146, 89, 0.26));
  border: 1px solid rgba(143, 244, 168, 0.4);
  color: var(--mint);
}

.stack-meta,
.footer-badges,
.footer-chips,
.card-actions,
.banner-actions,
.safety-actions,
.overlay-actions,
.control-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.stack-bullets,
.bullets,
.safety-list {
  margin: 10px 0;
  padding-left: 20px;
  color: var(--text-1);
}

.stack-cta {
  display: inline-flex;
  margin-top: 4px;
  color: var(--mint);
  font-weight: 700;
}

.stack-media {
  min-height: 100%;
  overflow: hidden;
}

.stack-media img,
.game-photo,
.safety-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.banner-soft {
  background: rgba(10, 28, 19, 0.74);
}

.safety-slab {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.safety-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: rgba(6, 16, 11, 0.94);
}

.footer-new {
  padding: 30px 0;
}

.footer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-logo-text {
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
}

.footer-grid2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(10, 24, 17, 0.64);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-box a {
  color: var(--text-1);
  font-size: 0.9rem;
}

.footer-box a:hover {
  color: var(--mint);
}

.footer-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.74rem;
  color: var(--text-1);
  background: rgba(12, 31, 21, 0.8);
}

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

.footer-toplink {
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 40px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(9, 26, 18, 0.78);
  color: var(--mint);
}

.surface-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reel {
  border-radius: 12px;
  background: rgba(7, 22, 14, 0.92);
  border: 1px solid var(--line);
  overflow: hidden;
}

.reel-window {
  height: 96px;
  overflow: hidden;
}

.reel-track {
  will-change: transform;
}

.reel-cell {
  height: 96px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--mint);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.wheel-wrap {
  width: min(350px, 100%);
  margin-inline: auto;
  position: relative;
}

.wheel-pointer {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--amber);
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.wheel {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: conic-gradient(
    from 0deg,
    #2f8c52 0deg 45deg,
    #235f3d 45deg 90deg,
    #356f4a 90deg 135deg,
    #1f4d33 135deg 180deg,
    #4a9a62 180deg 225deg,
    #2a7448 225deg 270deg,
    #59b674 270deg 315deg,
    #1f5a39 315deg 360deg
  );
  box-shadow: inset 0 0 0 12px rgba(8, 20, 13, 0.72), var(--shadow-1);
  position: relative;
  transition: transform 4.2s cubic-bezier(0.12, 0.84, 0.19, 1);
}

.wheel::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(8, 22, 14, 0.9);
  border: 2px solid var(--line);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.wheel-label {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: rotate(calc(var(--slice-angle) * 1deg)) translateY(-40%) rotate(calc(var(--slice-angle) * -1deg));
  transform-origin: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f4ffe8;
}

.output,
.contact-status,
.wallet-inline {
  border: 1px solid var(--line);
  background: rgba(10, 27, 19, 0.72);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text-1);
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.memory-cell {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 60px;
  display: grid;
  place-items: center;
  background: rgba(9, 25, 16, 0.84);
  color: var(--text-1);
  font-weight: 700;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.memory-cell.active {
  background: rgba(115, 238, 147, 0.22);
  border-color: rgba(148, 255, 178, 0.74);
  color: var(--mint);
  transform: translateY(-1px);
}

.memory-cell:disabled {
  opacity: 0.72;
}

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

.achievement.unlocked {
  border-color: rgba(132, 255, 179, 0.74);
  box-shadow: 0 0 0 1px rgba(132, 255, 179, 0.2) inset, var(--shadow-1);
}

.status {
  margin-top: 8px;
  color: var(--mint);
  font-size: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text-0);
  font-size: 0.99rem;
  padding: 0;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.open .faq-answer {
  max-height: 280px;
  margin-top: 10px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.87rem;
  color: var(--text-1);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 22, 14, 0.82);
  color: var(--text-0);
  padding: 10px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 9, 6, 0.8);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.overlay.show {
  display: grid;
}

.overlay-card {
  max-width: 470px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(13, 34, 23, 0.96), rgba(10, 23, 16, 0.96));
  box-shadow: var(--shadow-2);
  padding: 22px;
}

.cookie-box {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(360px, calc(100vw - 22px));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(9, 24, 16, 0.96);
  padding: 14px;
  z-index: 70;
  display: none;
  box-shadow: var(--shadow-2);
}

.cookie-box.show {
  display: block;
  animation: riseIn 250ms ease-out;
}

.reveal {
  animation: revealUp 600ms ease both;
}

.float-slow {
  animation: floatY 5.4s ease-in-out infinite;
}

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

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

@keyframes meterFlow {
  0%, 100% { width: 68%; }
  50% { width: 88%; }
}

@media (max-width: 1080px) {
  .header-right {
    min-width: 0;
  }

  .steps,
  .achievement-grid,
  .footer-grid2,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-slab,
  .stack-card {
    grid-template-columns: 1fr;
  }

  .hero-creative {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  .header-inner {
    justify-content: space-between;
    position: relative;
  }

  .header-left {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 14px;
    padding: 10px;
    display: none;
    background: #07140d;
    backdrop-filter: none;
    flex-direction: column;
    margin: 0;
    transform: none;
    transition: none;
    z-index: 55;
    border: 1px solid rgba(132, 236, 161, 0.3);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 12px;
  }

  .site-header.nav-open::after {
    content: none;
  }

  .topbar-right,
  .header-right {
    display: none;
  }

  .container {
    width: calc(100% - 18px);
  }

  .page-hero,
  .hero,
  .card,
  .banner,
  .safety-slab,
  .game-surface,
  .achievement,
  .faq-item,
  .legal-card,
  .contact-layout > * {
    padding: 14px;
    border-radius: 14px;
  }

  .stack-body {
    padding: 14px;
  }

  .steps,
  .achievement-grid,
  .footer-grid2,
  .contact-layout,
  .form-grid,
  .memory-grid {
    grid-template-columns: 1fr;
  }

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

  .banner,
  .surface-head,
  .footer-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
