:root {
  --red: #e40303;
  --orange: #ff8c00;
  --yellow: #ffed00;
  --green: #008026;
  --blue: #24408e;
  --violet: #732982;
  --magenta: #c2185b;
  --ink: #1d1226;
  --mute: #5b4766;
  --cream: #fff6fb;
  --blush: #ffe6f1;
  --glass: rgba(255, 255, 255, 0.62);
  --line: rgba(29, 18, 38, 0.1);
  --shadow: 0 24px 60px rgba(114, 41, 130, 0.14);
  --display: "Shrikhand", "Baloo 2", serif;
  --round: "Baloo 2", "Nunito", sans-serif;
  --body: "Nunito", "Baloo 2", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.sky__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(255, 140, 0, 0.16), transparent 60%),
    radial-gradient(800px 480px at 90% 8%, rgba(115, 41, 130, 0.14), transparent 62%),
    radial-gradient(700px 420px at 50% 110%, rgba(36, 64, 142, 0.1), transparent 60%),
    linear-gradient(180deg, #fff8fc 0%, #fff4f8 42%, #f6f3ff 100%);
}

.silk {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 280px;
  filter: blur(8px);
  opacity: 0.42;
  border-radius: 50%;
  animation: silk-drift 22s ease-in-out infinite;
}

.silk--a {
  top: 8%;
  background: linear-gradient(
    90deg,
    #e40303,
    #ff8c00,
    #ffed00,
    #008026,
    #24408e,
    #732982
  );
  animation-duration: 26s;
}

.silk--b {
  top: 38%;
  opacity: 0.28;
  background: linear-gradient(
    90deg,
    #732982,
    #24408e,
    #008026,
    #ffed00,
    #ff8c00,
    #e40303
  );
  animation-duration: 32s;
  animation-direction: reverse;
}

.silk--c {
  bottom: -40px;
  height: 220px;
  opacity: 0.22;
  background: linear-gradient(
    90deg,
    #ff8c00,
    #e40303,
    #732982,
    #24408e,
    #008026,
    #ffed00
  );
  animation-duration: 28s;
}

@keyframes silk-drift {
  0%,
  100% {
    transform: translateX(-4%) rotate(-6deg);
  }
  50% {
    transform: translateX(4%) rotate(5deg);
  }
}

.cloud {
  position: absolute;
  width: 220px;
  height: 70px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 80px;
  filter: blur(2px);
  animation: cloud-float 36s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 90px;
  height: 90px;
  top: -46px;
  left: 36px;
}

.cloud::after {
  width: 120px;
  height: 120px;
  top: -62px;
  left: 88px;
}

.cloud--1 {
  top: 14%;
  left: -10%;
  animation-duration: 42s;
}

.cloud--2 {
  top: 48%;
  left: -20%;
  opacity: 0.45;
  animation-duration: 54s;
}

.cloud--3 {
  top: 72%;
  left: -16%;
  opacity: 0.35;
  animation-duration: 48s;
  animation-delay: -12s;
}

@keyframes cloud-float {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(140vw);
  }
}

.orb {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  filter: blur(0.4px);
  animation: orb-bob 9s ease-in-out infinite;
}

.orb--red {
  background: var(--red);
  top: 18%;
  left: 8%;
}
.orb--orange {
  background: var(--orange);
  top: 28%;
  right: 12%;
  animation-delay: -1.4s;
}
.orb--yellow {
  background: var(--yellow);
  top: 62%;
  left: 16%;
  animation-delay: -2.2s;
}
.orb--green {
  background: var(--green);
  top: 40%;
  left: 48%;
  animation-delay: -3s;
}
.orb--blue {
  background: var(--blue);
  bottom: 16%;
  right: 22%;
  animation-delay: -4s;
}
.orb--violet {
  background: var(--violet);
  top: 12%;
  right: 34%;
  animation-delay: -5s;
}

@keyframes orb-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-22px) scale(1.18);
    opacity: 1;
  }
}

.glitter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-prism {
  position: fixed;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.22), rgba(194, 24, 91, 0.08) 42%, transparent 70%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.is-pointer .cursor-prism {
  opacity: 1;
}

.pride-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 40;
  background: linear-gradient(
    90deg,
    var(--red) 0 16.6%,
    var(--orange) 16.6% 33.2%,
    var(--yellow) 33.2% 49.8%,
    var(--green) 49.8% 66.4%,
    var(--blue) 66.4% 83%,
    var(--violet) 83% 100%
  );
  background-size: 200% 100%;
  animation: rail-slide 10s linear infinite;
}

@keyframes rail-slide {
  to {
    background-position: 200% 0;
  }
}

.scroll-prism {
  position: fixed;
  top: 6px;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 41;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--blue));
  box-shadow: 0 0 12px rgba(194, 24, 91, 0.45);
}

.parade,
main,
.tape,
.foot {
  position: relative;
  z-index: 3;
}

.parade {
  position: sticky;
  top: 6px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1200px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(115, 41, 130, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.parade.is-stuck {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(115, 41, 130, 0.14);
}

.parade__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.parade__mark img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--magenta);
  animation: badge-pulse 3.4s ease-in-out infinite;
}

.parade__mark span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.parade__mark em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.parade__mark strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.parade__links {
  display: flex;
  gap: 22px;
}

.parade__links a {
  font-family: var(--round);
  font-weight: 700;
  font-size: 15px;
  color: var(--mute);
  position: relative;
}

.parade__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.parade__links a:hover::after,
.parade__links a.is-active::after {
  transform: scaleX(1);
}

.parade__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.glyph {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1d1226;
  box-shadow: 0 8px 16px rgba(29, 18, 38, 0.18);
  transition: transform 0.25s ease;
}

.glyph:hover {
  transform: translateY(-2px) rotate(-6deg);
}

.glyph img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.buy,
.ghost,
.join-tile,
.stride__step a,
.ca-pill button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
}

.buy {
  padding: 10px 16px;
  color: #fff;
  font-family: var(--round);
  font-weight: 800;
  background: linear-gradient(120deg, var(--magenta), var(--violet) 55%, var(--blue));
  background-size: 180% 180%;
  animation: sheen 6s ease infinite;
  box-shadow: 0 10px 22px rgba(194, 24, 91, 0.28);
  transition: transform 0.25s ease;
}

.buy:hover {
  transform: translateY(-2px);
}

.buy img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.buy--lg {
  padding: 14px 22px;
  font-size: 17px;
}

@keyframes sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.parade__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}

.parade__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.tape {
  overflow: hidden;
  margin-top: 16px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.tape__run {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: tape-run 28s linear infinite;
  font-family: var(--round);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green), var(--blue), var(--violet), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero {
  padding: 56px 0 80px;
}

.hero__stage {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.badge-stage {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.halo {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--violet),
    var(--red)
  );
  filter: blur(28px);
  opacity: 0.55;
  animation: spin 12s linear infinite;
}

.ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 3px dashed rgba(29, 18, 38, 0.18);
  animation: spin 18s linear infinite reverse;
}

.badge {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow), 0 0 0 10px rgba(255, 255, 255, 0.75);
  animation: badge-float 5s ease-in-out infinite;
}

.badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--magenta);
  }
  50% {
    box-shadow: 0 0 0 3px #fff, 0 0 0 7px var(--violet);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spark {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 237, 0, 0.8);
  animation: sparkle 2.4s ease-in-out infinite;
}

.spark--1 {
  top: 10%;
  left: 18%;
}
.spark--2 {
  top: 16%;
  right: 12%;
  animation-delay: -0.6s;
}
.spark--3 {
  bottom: 18%;
  left: 8%;
  animation-delay: -1.1s;
}
.spark--4 {
  bottom: 12%;
  right: 16%;
  animation-delay: -1.7s;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(0.4) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2) rotate(45deg);
    opacity: 1;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-family: var(--round);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.kicker img {
  height: 16px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(24%) saturate(1400%) hue-rotate(250deg);
}

.ribbon-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.ribbon-title span,
.ribbon-title em {
  display: block;
}

.ribbon-title em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--violet),
    var(--red)
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-flow 8s linear infinite;
}

@keyframes title-flow {
  to {
    background-position: 220% 0;
  }
}

.chip {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--round);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(194, 24, 91, 0.1);
}

.lede {
  margin: 0 0 22px;
  max-width: 34em;
  font-size: 18px;
  line-height: 1.6;
  color: var(--mute);
}

.ca-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 560px);
  padding: 8px 8px 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.ca-pill span {
  font-family: var(--round);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
}

.ca-pill code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.ca-pill button {
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.ca-pill button.is-copied {
  background: var(--green);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-family: var(--round);
  font-weight: 800;
  transition: transform 0.25s ease;
}

.ghost:hover {
  transform: translateY(-2px);
}

.ghost img {
  width: 18px;
  height: 18px;
}

.about,
.howtobuy,
.chart,
.joinus {
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: var(--round);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--magenta);
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1;
}

.section-lead {
  margin: 0 0 36px;
  max-width: 40em;
  font-size: 18px;
  line-height: 1.65;
  color: var(--mute);
}

.hold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hold-card {
  padding: 26px 24px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.hold-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
}

.hold-card--rose::before {
  background: linear-gradient(180deg, var(--red), var(--orange));
}
.hold-card--sun::before {
  background: linear-gradient(180deg, var(--yellow), var(--green));
}
.hold-card--lagoon::before {
  background: linear-gradient(180deg, var(--blue), var(--violet));
}

.hold-card:hover {
  transform: translateY(-8px);
}

.hold-card h3 {
  margin: 0 0 10px;
  font-family: var(--round);
  font-size: 24px;
}

.hold-card p {
  margin: 0;
  color: var(--mute);
  line-height: 1.6;
}

.stride {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.stride__step {
  padding: 22px 18px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.stride__step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
}

.stride__step:nth-child(1)::after {
  background: var(--red);
}
.stride__step:nth-child(2)::after {
  background: var(--orange);
}
.stride__step:nth-child(3)::after {
  background: var(--green);
}
.stride__step:nth-child(4)::after {
  background: var(--violet);
}

.stride__num {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: rgba(29, 18, 38, 0.16);
  margin-bottom: 10px;
}

.stride__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(29, 18, 38, 0.08);
}

.stride__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.stride__icon--badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.stride__step h3 {
  margin: 0 0 8px;
  font-family: var(--round);
  font-size: 22px;
}

.stride__step p {
  margin: 0 0 14px;
  color: var(--mute);
  line-height: 1.55;
}

.stride__step a {
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.chart-frame {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: min(680px, 78vh);
  position: relative;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--green),
    var(--blue),
    var(--violet)
  );
  z-index: 1;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cinema {
  margin: 0 0 28px;
  aspect-ratio: 3 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
}

.cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: cinema-drift 18s ease-in-out infinite;
}

@keyframes cinema-drift {
  0%,
  100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.08);
  }
}

.join-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.join-tile {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-family: var(--round);
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.join-tile:hover {
  transform: translateY(-4px);
}

.join-tile img {
  width: 22px;
  height: 22px;
}

.join-tile:first-child img {
  filter: brightness(0);
}

.foot {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

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

.foot p {
  margin: 0;
  color: var(--mute);
}

.parade__mark--foot img {
  width: 36px;
  height: 36px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}
.delay-2 {
  animation-delay: 0.24s;
}
.delay-3 {
  animation-delay: 0.36s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero__stage,
  .hold-grid,
  .stride,
  .join-row {
    grid-template-columns: 1fr 1fr;
  }

  .parade__links {
    display: none;
  }

  .parade.is-open .parade__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .parade__toggle {
    display: block;
  }
}

@media (max-width: 720px) {
  .hero__stage,
  .hold-grid,
  .stride,
  .join-row,
  .foot__row {
    grid-template-columns: 1fr;
  }

  .foot__row {
    display: grid;
  }

  .hero {
    padding-top: 28px;
  }

  .parade__mark span {
    display: none;
  }

  .buy:not(.buy--lg) {
    padding: 10px 12px;
    font-size: 14px;
  }
}

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