/* ========================================
   NALA — Clean premium rebuild
   Palette: warm black · cream · gold · ember · soft violet
   ======================================== */

:root {
  --bg: #0b0a0c;
  --bg-2: #141217;
  --cream: #f3ebe0;
  --cream-dim: #b8aea0;
  --gold: #d9a441;
  --gold-soft: #e8c57a;
  --ember: #e07a3a;
  --violet: #8b6ad9;
  --line: rgba(243, 235, 224, 0.1);
  --font: "Instrument Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --nav: 72px;
  --wrap: 1080px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
strong { color: var(--gold-soft); font-weight: 650; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

/* Transparent logo cutouts */
.cutout {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
}

.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(139, 106, 217, 0.18), var(--bg) 55%);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: min(180px, 42vw);
  animation: rise 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(139, 106, 217, 0.35));
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(11, 10, 12, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav__row {
  width: min(100% - 2rem, var(--wrap));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.nav__logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(139, 106, 217, 0.4));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-size: 0.86rem;
  color: var(--cream-dim);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cream);
  background: rgba(243, 235, 224, 0.06);
}

.nav__end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav__burger span {
  width: 16px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.25s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dock */
.dock {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dock a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(20, 18, 23, 0.8);
  backdrop-filter: blur(10px);
  color: var(--cream-dim);
  transition: 0.25s var(--ease);
}

.dock a:hover {
  color: var(--gold);
  border-color: rgba(217, 164, 65, 0.4);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn--lg {
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.btn--gold {
  color: #1a1208;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--ember));
  box-shadow: 0 10px 28px rgba(224, 122, 58, 0.22);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(217, 164, 65, 0.3);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.03);
  color: var(--cream);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.4);
  background: rgba(217, 164, 65, 0.08);
}

/* Type */
.label {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 34rem;
}

.head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.head .p {
  margin-inline: auto;
  margin-top: 0.35rem;
}

.block {
  position: relative;
  z-index: 5;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav) + 1rem) 0 3rem;
  overflow: hidden;
}

.hero__aura {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(139, 106, 217, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 70%, rgba(217, 164, 65, 0.08), transparent 55%),
    linear-gradient(180deg, #100e14 0%, var(--bg) 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__visual {
  position: relative;
  width: min(420px, 78vw);
  margin-bottom: 0.5rem;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 18% 22%;
  background: radial-gradient(circle, rgba(139, 106, 217, 0.35), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  animation: rise 6s ease-in-out infinite;
}

.hero__brand {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.hero__title {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.8vw, 4.1rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero__sub {
  margin-top: 1rem;
  color: var(--cream-dim);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 28rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.03);
  padding: 0.85rem 0;
}

.ticker__track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.ticker__track span::before {
  content: "· ";
  color: var(--gold);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about__media:hover img { transform: scale(1.03); }

.list {
  margin: 1.4rem 0 1.7rem;
  display: grid;
  gap: 0.7rem;
}

.list li {
  color: var(--cream-dim);
  padding-left: 1.1rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.5rem 1.35rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.025);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 164, 65, 0.35);
}

.card span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--cream-dim);
  font-size: 0.94rem;
}

/* Lore */
.lore__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lore__item {
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.lore__item em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.lore__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.lore__item p {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

/* Quotes / chips */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.quote {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.03);
  min-height: 140px;
  display: flex;
  align-items: center;
}

.quote p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.chip {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.03);
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--cream-dim);
  transition: 0.2s;
}

.chip:hover {
  color: var(--cream);
  border-color: rgba(217, 164, 65, 0.4);
  background: rgba(217, 164, 65, 0.08);
}

/* Token */
.token {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.75rem;
  border-radius: 24px;
  border: 1px solid rgba(217, 164, 65, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 106, 217, 0.12), transparent 40%),
    var(--bg-2);
}

.token__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.token__logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 14px rgba(139, 106, 217, 0.35));
}

.token__top h3 {
  font-size: 1.3rem;
  font-weight: 650;
}

.token__top p {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

.token__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}

.token__ca {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
}

.token__ca code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  word-break: break-all;
}

.token__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

/* Simple / tokenomics */
.simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.simple__item {
  text-align: center;
  padding: 1.6rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.025);
}

.simple__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.simple__item p {
  color: var(--cream-dim);
  font-size: 0.9rem;
}

/* Road */
.road {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.road__item {
  padding: 1.5rem 1.3rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.road__item span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1208;
  background: var(--gold);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.road__item h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.road__item ul {
  display: grid;
  gap: 0.35rem;
  color: var(--cream-dim);
}

.road__item li::before {
  content: "– ";
  color: var(--gold);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps__item {
  padding: 1.5rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.025);
}

.steps__item b {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.steps__item h3 {
  margin-bottom: 0.35rem;
}

.steps__item p {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery__item {
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  transition: transform 0.3s var(--ease);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item--logo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(139, 106, 217, 0.2), transparent 55%),
    var(--bg-2);
}

.gallery__item--logo img {
  width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(139, 106, 217, 0.3));
}

.gallery__item:hover { transform: translateY(-4px); }
.gallery__item:not(.gallery__item--logo):hover img { transform: scale(1.05); }

/* Army */
.army__box {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 164, 65, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 106, 217, 0.16), transparent 45%),
    var(--bg-2);
}

.army__logo {
  width: min(180px, 46vw);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 22px rgba(139, 106, 217, 0.3));
}

.army__box .p {
  margin: 0.5rem auto 1.5rem;
}

.army__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* FAQ */
.faq__wrap { max-width: 720px; }

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.025);
  overflow: hidden;
}

.faq__item.is-open { border-color: rgba(217, 164, 65, 0.35); }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
}

.faq__q i {
  color: var(--gold);
  transition: transform 0.3s;
}

.faq__item.is-open .faq__q i { transform: rotate(180deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq__item.is-open .faq__a { max-height: 220px; }

.faq__a p {
  padding: 0 1.2rem 1.1rem;
  color: var(--cream-dim);
}

.faq__a a {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* Footer */
.footer {
  position: relative;
  z-index: 5;
  padding: 3rem 0 2.25rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer__brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px rgba(139, 106, 217, 0.3));
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  justify-content: center;
}

.footer__links a {
  color: var(--cream-dim);
  font-weight: 550;
}

.footer__links a:hover { color: var(--gold); }

.footer__note {
  max-width: 560px;
  color: var(--cream-dim);
  font-size: 0.84rem;
}

.footer__copy {
  color: rgba(243, 235, 224, 0.35);
  font-size: 0.78rem;
}

/* Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none !important; }

.lightbox img {
  max-width: min(860px, 100%);
  max-height: 85vh;
  filter: drop-shadow(0 0 28px rgba(139, 106, 217, 0.25));
}

.lightbox__x {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 950;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #1a1208;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s;
}

.top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%) translateY(14px);
  z-index: 4500;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid rgba(217, 164, 65, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Motion */
@keyframes rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 86vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: calc(var(--nav) + 1.2rem) 1.2rem 2rem;
    background: rgba(14, 12, 16, 0.97);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform 0.3s var(--ease);
  }

  .nav__links.is-open { transform: none; }
  .nav-link { padding: 0.85rem 1rem; font-size: 1rem; }
  .nav__burger { display: flex; z-index: 2; }
  .nav__end .btn { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .cards,
  .lore__row,
  .quotes,
  .simple,
  .steps,
  .road { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .dock { right: 0.5rem; }
  .dock a { width: 38px; height: 38px; }

  .cards,
  .lore__row,
  .quotes,
  .simple,
  .steps,
  .road,
  .gallery { grid-template-columns: 1fr; }

  .hero__actions,
  .token__actions,
  .army__actions,
  .token__ca { flex-direction: column; }

  .btn { width: 100%; }
  .hero__title { max-width: 16ch; }
}

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