:root {
  --void: #050605;
  --ink: #090b09;
  --ash: #141714;
  --slate: #1c201c;
  --bone: #eceae4;
  --fog: #8f968f;
  --acid: #1ee02a;
  --acid-hot: #31fb2f;
  --acid-dim: #0c7a16;
  --horn: #16dc1f;
  --display: "Oswald", "Impact", sans-serif;
  --stamp: "Teko", "Oswald", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: none;
}

::selection {
  background: var(--acid);
  color: #041204;
}

.noise,
.sunburst,
#field,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.sunburst {
  z-index: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(30, 224, 42, 0.16), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(30, 224, 42, 0.06), transparent 32%),
    repeating-conic-gradient(from 0deg at 70% 30%, rgba(255, 255, 255, 0.035) 0 6deg, transparent 6deg 12deg);
  animation: sun-spin 80s linear infinite;
  mask-image: radial-gradient(circle at 70% 30%, #000 0 18%, transparent 58%);
}

.noise {
  z-index: 8;
  opacity: 0.08;
  mix-blend-mode: overlay;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#field {
  z-index: 1;
}

.vignette {
  z-index: 7;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--acid-hot);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(49, 251, 47, 0.45);
  transition: transform 0.18s ease, background 0.18s ease;
}

.cursor.on-link span {
  background: rgba(30, 224, 42, 0.18);
  transform: rotate(45deg) scale(1.65);
}

/* Boot */
.boot {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: #030403;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.boot.is-out {
  opacity: 0;
  visibility: hidden;
}

.boot-mark {
  width: 140px;
  filter: drop-shadow(0 0 24px rgba(30, 224, 42, 0.55));
  animation: boot-pulse 1.1s ease-in-out infinite;
}

.boot-word {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.16em;
  transform: skewX(-8deg);
}

.boot-track {
  width: 180px;
  height: 3px;
  background: #1a1f1a;
  overflow: hidden;
}

.boot-track i {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--acid-hot));
  animation: boot-run 0.9s ease-in-out infinite;
}

.boot-sub {
  font-family: var(--stamp);
  letter-spacing: 0.28em;
  color: var(--fog);
  font-size: 15px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.is-on {
  background: rgba(5, 6, 5, 0.78);
  border-bottom: 1px solid rgba(30, 224, 42, 0.16);
  backdrop-filter: blur(16px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.12em;
  transform: skewX(-6deg);
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(30, 224, 42, 0.45));
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--stamp);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--bone);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 224, 42, 0.28);
  background: rgba(8, 12, 8, 0.7);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.icon-btn:hover {
  border-color: var(--acid);
  box-shadow: 0 0 18px rgba(30, 224, 42, 0.25);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle i {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--bone);
}

.nav-toggle i:first-child { top: 15px; }
.nav-toggle i:last-child { bottom: 15px; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 100px 32px;
  background: rgba(5, 6, 5, 0.96);
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: skewX(-8deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: var(--stamp);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-acid {
  background: var(--acid);
  color: #041204;
  box-shadow: 0 0 24px rgba(30, 224, 42, 0.28);
}

.btn-acid img {
  filter: brightness(0);
}

.btn-acid:hover {
  background: var(--acid-hot);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(49, 251, 47, 0.45);
}

.btn-ghost {
  background: rgba(8, 12, 8, 0.7);
  border-color: rgba(30, 224, 42, 0.32);
  color: var(--bone);
}

.btn-ghost img {
  filter: brightness(0) invert(1);
}

.btn-ghost:hover {
  border-color: var(--acid);
  box-shadow: 0 0 20px rgba(30, 224, 42, 0.2);
  transform: translateY(-2px);
}

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

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 132px 48px 80px;
  display: flex;
  flex-direction: column;
}

.hero-shards b {
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--acid), transparent 70%);
  opacity: 0.35;
  animation: shard-float 7s ease-in-out infinite;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.hero-shards b:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.hero-shards b:nth-child(2) { top: 28%; right: 10%; width: 12px; height: 12px; animation-delay: 1.2s; }
.hero-shards b:nth-child(3) { top: 62%; left: 14%; width: 22px; height: 22px; animation-delay: 0.6s; }
.hero-shards b:nth-child(4) { bottom: 18%; right: 18%; animation-delay: 1.8s; }
.hero-shards b:nth-child(5) { top: 40%; left: 42%; width: 10px; height: 10px; animation-delay: 2.2s; }
.hero-shards b:nth-child(6) { top: 16%; left: 48%; animation-delay: 0.4s; }
.hero-shards b:nth-child(7) { bottom: 24%; left: 36%; width: 14px; height: 14px; animation-delay: 1.5s; }
.hero-shards b:nth-child(8) { top: 72%; right: 8%; animation-delay: 2.8s; }

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--stamp);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acid);
  font-size: 16px;
}

.stamp img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(64%) sepia(92%) saturate(1400%) hue-rotate(75deg);
}

.wordmark {
  margin: 14px 0 18px;
  line-height: 0.82;
  transform: skewX(-8deg);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(72px, 13vw, 168px);
  white-space: nowrap;
}

.wm-67 {
  color: var(--acid-hot);
  text-shadow:
    0 0 18px rgba(49, 251, 47, 0.55),
    0 0 42px rgba(30, 224, 42, 0.28);
  animation: glow-flicker 3.6s ease-in-out infinite;
}

.wm-bull {
  color: var(--bone);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.hero-lead {
  max-width: 34ch;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}

.hero-sub {
  margin-top: 10px;
  color: var(--fog);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ca-bar {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  padding: 10px 10px 10px 14px;
  background: rgba(8, 12, 8, 0.72);
  border: 1px solid rgba(30, 224, 42, 0.22);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.ca-label {
  font-family: var(--stamp);
  letter-spacing: 0.16em;
  color: var(--acid);
  font-size: 16px;
}

.ca-bar code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--fog);
  font-size: 13px;
}

.ca-bar button {
  padding: 8px 12px;
  background: var(--acid);
  color: #041204;
  font-family: var(--stamp);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.emblem-ring,
.emblem-ring.delay {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(30, 224, 42, 0.22);
  border-radius: 50%;
  animation: ring-spin 18s linear infinite;
}

.emblem-ring.delay {
  inset: 2%;
  border-style: dashed;
  animation-duration: 28s;
  animation-direction: reverse;
  opacity: 0.55;
}

.emblem-frame {
  width: min(460px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 28px rgba(30, 224, 42, 0.28));
  animation: emblem-float 5.5s ease-in-out infinite;
}

.emblem-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  transition: transform 0.12s linear;
}

.plunge {
  align-self: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--stamp);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  font-size: 15px;
}

.plunge i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--acid), transparent);
  animation: plunge 1.4s ease-in-out infinite;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(30, 224, 42, 0.18);
  background: rgba(8, 10, 8, 0.7);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 20px;
}

.ticker-track span + span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 48px;
  background: var(--acid);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--acid);
}

/* Sections */
.about,
.howto,
.chart,
.join {
  position: relative;
  z-index: 2;
  padding: 110px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-head h2 {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  transform: skewX(-6deg);
  max-width: 16ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--stamp);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
}

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

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.manifesto {
  padding: 32px;
  background: linear-gradient(180deg, rgba(20, 24, 20, 0.72), rgba(8, 10, 8, 0.55));
  border: 1px solid rgba(30, 224, 42, 0.16);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.manifesto p {
  color: #c5c9c3;
  font-size: 18px;
  line-height: 1.7;
}

.manifesto p + p {
  margin-top: 16px;
}

.pull {
  margin-top: 22px !important;
  color: var(--bone) !important;
  font-family: var(--display);
  font-size: 26px !important;
  line-height: 1.15 !important;
  transform: skewX(-6deg);
  text-transform: uppercase;
}

.facets {
  display: grid;
  gap: 14px;
}

.facet {
  position: relative;
  padding: 22px 22px 22px 28px;
  background: rgba(12, 15, 12, 0.78);
  border: 1px solid rgba(30, 224, 42, 0.14);
  overflow: hidden;
}

.facet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.facet-n {
  font-family: var(--stamp);
  color: var(--acid);
  letter-spacing: 0.16em;
}

.facet h3 {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  transform: skewX(-6deg);
  margin: 4px 0 8px;
}

.facet p {
  color: var(--fog);
  line-height: 1.55;
}

/* How to buy */
.gates {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gate-line {
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.35;
  overflow: hidden;
}

.gate-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: charge-run 2.4s linear infinite;
}

.gate {
  position: relative;
  padding: 24px 20px 28px;
  background: rgba(10, 13, 10, 0.8);
  border: 1px solid rgba(30, 224, 42, 0.16);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gate:hover {
  transform: translateY(-6px);
  border-color: var(--acid);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(30, 224, 42, 0.12);
}

.gate-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #0d110d;
  border: 1px solid rgba(30, 224, 42, 0.22);
}

.gate-icon img {
  width: 26px;
  height: 26px;
}

.gate-icon.sol img {
  filter: brightness(0) invert(1);
}

.gate-n {
  font-family: var(--stamp);
  color: var(--acid);
  letter-spacing: 0.18em;
}

.gate h3 {
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
  transform: skewX(-6deg);
  margin: 4px 0 10px;
}

.gate p {
  color: var(--fog);
  line-height: 1.55;
}

/* Chart */
.chart-bezel {
  position: relative;
  padding: 10px;
  background: rgba(8, 10, 8, 0.7);
  border: 1px solid rgba(30, 224, 42, 0.22);
  box-shadow: 0 0 40px rgba(30, 224, 42, 0.08);
}

.bezel-corners::before,
.bezel-corners::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--acid);
}

.bezel-corners::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.bezel-corners::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.chart-bezel iframe {
  width: 100%;
  height: 680px;
  border: 0;
  background: #0b0f0b;
}

/* Join */
.join {
  padding-bottom: 80px;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 224, 42, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(30, 224, 42, 0.16);
}

.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(5, 6, 5, 0.35));
  pointer-events: none;
}

.banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  animation: banner-glow 4.5s ease-in-out infinite;
}

.join-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.join-row p {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  transform: skewX(-6deg);
  max-width: 22ch;
}

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

/* Footer */
.foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 48px 48px;
  border-top: 1px solid rgba(30, 224, 42, 0.12);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  width: 48px;
  filter: drop-shadow(0 0 10px rgba(30, 224, 42, 0.4));
}

.foot-brand strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.12em;
  transform: skewX(-6deg);
}

.foot-brand span,
.disclaimer {
  color: var(--fog);
  font-size: 14px;
  line-height: 1.55;
}

.disclaimer {
  max-width: 62ch;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

.js .reveal {
  animation: none;
}

.js .reveal.in {
  animation: rise 0.8s ease forwards;
}

/* Motion */
@keyframes sun-spin {
  to { transform: rotate(360deg); }
}

@keyframes boot-pulse {
  50% { transform: scale(1.04); filter: drop-shadow(0 0 34px rgba(49, 251, 47, 0.7)); }
}

@keyframes boot-run {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes glow-flicker {
  0%, 100% { opacity: 1; }
  46% { opacity: 1; }
  50% { opacity: 0.72; }
  54% { opacity: 1; }
  78% { opacity: 0.86; }
}

@keyframes emblem-float {
  50% { transform: translateY(-10px); }
}

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

@keyframes shard-float {
  50% { transform: translateY(-16px) rotate(12deg); opacity: 0.7; }
}

@keyframes plunge {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

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

@keyframes charge-run {
  0% { left: -10%; }
  100% { left: 110%; }
}

@keyframes banner-glow {
  50% { filter: brightness(1.06); }
}

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

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .nav-links,
  .nav-buy {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .about,
  .howto,
  .chart,
  .join,
  .foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-grid,
  .about-grid,
  .gates,
  .join-row,
  .foot {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-emblem {
    min-height: 360px;
    order: -1;
  }

  .wordmark {
    font-size: 86px;
  }

  .chart-bezel iframe {
    height: 480px;
  }

  .join-row {
    gap: 18px;
  }
}

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

  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }
}
