/* ==========================================================================
   ClashFarmer — shared site stylesheet (2026 redesign)
   Hand-written modern CSS: custom properties, grid/flexbox, no frameworks.
   ========================================================================== */

:root {
  /* Brand palette, sampled from the pixel-art logo and hero banner */
  --navy-950: #0b1a23;
  --navy-900: #102430;
  --navy-850: #142c3a;
  --navy-800: #183445;
  --navy-700: #1f425a;
  --navy-600: #29556f;
  --ink: #eef4f7;
  --muted: #a9c0cd;
  --faint: #7d97a6;
  --orange: #f36f22;
  --orange-deep: #e85924;
  --orange-soft: #ffa050;
  --teal: #7ecbe8;
  --green: #8fbf6f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --font-sans: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.25);

  --container: 1120px;
  --gutter: clamp(1rem, 4vw, 2rem);

  color-scheme: dark;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--navy-900);
  background-image: linear-gradient(180deg, var(--navy-950), var(--navy-900) 340px);
  background-repeat: no-repeat;
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--orange-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--orange);
  color: #14100b;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

del {
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
}

.section-tight {
  padding-block: clamp(1.8rem, 4vw, 2.8rem);
}

.section-alt {
  background: var(--navy-850);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 0.7rem;
}

.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.accent { color: var(--orange-soft); }
.mt-2 { margin-top: 2rem; }
.h3-center { justify-content: center; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  color: #1c0e04;
  box-shadow: 0 6px 18px rgba(232, 89, 36, 0.35);
}

.btn-primary:hover {
  color: #1c0e04;
  box-shadow: 0 10px 24px rgba(232, 89, 36, 0.5);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--orange);
  background: rgba(243, 111, 34, 0.12);
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.15rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 26, 35, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: clamp(140px, 18vw, 172px);
  height: auto;
  display: block;
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--orange-soft);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--orange-soft);
  background: rgba(243, 111, 34, 0.14);
}

.nav-cta {
  border: 1px solid var(--orange);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.nav-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close { display: none; }

/* Mobile nav: collapses only when JS is available (html.js) */
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-950);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem var(--gutter) 1rem;
    gap: 0.15rem;
  }

  .site-nav a {
    font-size: 1.05rem;
    padding: 0.65rem 0.8rem;
  }

  html.js .site-nav { display: none; }
  html.js .site-header[data-open="true"] .site-nav { display: block; }
  html.js .site-header[data-open="true"] .icon-menu { display: none; }
  html.js .site-header[data-open="true"] .icon-close { display: block; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--navy-700);
  background-image:
    linear-gradient(100deg, rgba(11, 26, 35, 0.94) 0%, rgba(16, 36, 48, 0.72) 55%, rgba(16, 36, 48, 0.42) 100%),
    url("../img/preview/background.png");
  background-size: cover;
  background-position: right center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.hero h1 {
  margin-bottom: 0.5em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero .tagline {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Fake window frame for screenshots */
.window {
  background: var(--navy-950);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  background: var(--navy-850);
  border-bottom: 1px solid var(--line);
}

.window-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--faint);
  opacity: 0.55;
}

.window-bar i:nth-child(1) { background: #e8695a; opacity: 1; }
.window-bar i:nth-child(2) { background: #f0b95a; opacity: 1; }
.window-bar i:nth-child(3) { background: #7fbf6f; opacity: 1; }

.window-bar span {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.window img {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  box-shadow: var(--shadow-soft);
}

a.card {
  display: block;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

a.card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: var(--orange);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card p {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(243, 111, 34, 0.16);
  color: var(--orange-soft);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
}

.checklist li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.5em;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="none" stroke="%2314100b" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" d="M3.5 8.5l3 3 6-7"/></svg>')
    center / 70% no-repeat,
    linear-gradient(180deg, var(--orange), var(--orange-deep));
}

/* Callout / notice box */
.callout {
  display: block;
  background: linear-gradient(120deg, rgba(243, 111, 34, 0.14), rgba(243, 111, 34, 0.05));
  border: 1px solid rgba(243, 111, 34, 0.45);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}

.callout strong {
  color: var(--orange-soft);
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.step {
  counter-increment: step;
  position: relative;
  padding-left: 4.2rem;
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1c0e04;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(232, 89, 36, 0.4);
}

.step h3 { margin-top: 0.15rem; }
.step p, .step li { color: var(--muted); }

/* --------------------------------------------------------------------------
   Screenshot gallery
   -------------------------------------------------------------------------- */
.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

@media (max-width: 980px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .shots { grid-template-columns: 1fr; } }

.shot {
  margin: 0;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.shot a {
  display: block;
}

.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 1230;
  object-fit: cover;
  object-position: top center;
  background: var(--navy-950);
  transition: transform 0.2s ease;
}

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

.shot figcaption {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
}

.shot figcaption strong {
  display: block;
  font-size: 0.98rem;
}

.shot figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Feature list columns
   -------------------------------------------------------------------------- */
.feature-cols {
  columns: 2;
  column-gap: 2.5rem;
}

@media (max-width: 700px) {
  .feature-cols { columns: 1; }
}

.feature-cols li {
  break-inside: avoid;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: stretch;
}

@media (max-width: 920px) {
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.plan-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
  background: linear-gradient(180deg, rgba(243, 111, 34, 0.10), rgba(24, 52, 69, 0) 45%), var(--navy-800);
}

.plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  color: #1c0e04;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.plan .plan-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.plan .price {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--orange-soft);
  line-height: 1;
  margin: 0.2rem 0;
}

.plan .price del {
  font-size: 1.15rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 0.3rem;
}

.plan .per-day {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.plan .checklist {
  text-align: left;
  margin: 0 auto 1.4rem;
  max-width: 17.5rem;
  flex-grow: 1;
}

.plan-buy {
  margin-top: auto;
}

.plan-buy form {
  margin: 0;
}

.plan-buy input[type="image"] {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   FAQ accordion (native details/summary)
   -------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--orange-soft);
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.faq-body a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 880px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }

.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.review blockquote {
  margin: 0;
  color: var(--ink);
  flex-grow: 1;
}

.review blockquote::before {
  content: "\201C";
  display: block;
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.review figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    linear-gradient(100deg, rgba(11, 26, 35, 0.95), rgba(16, 36, 48, 0.8)),
    url("../img/preview/background.png") right center / cover no-repeat;
  border-block: 1px solid var(--line);
  text-align: center;
}

.cta-band .btn-row {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Prose (long-form copy)
   -------------------------------------------------------------------------- */
.prose {
  max-width: 46rem;
}

.prose h3 {
  margin-top: 1.6em;
  color: var(--orange-soft);
}

.prose p { color: var(--muted); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 5vw, 3.2rem);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2rem;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.site-footer p {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--orange-soft);
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
}

.footer-legal p {
  margin: 0.2rem 0;
  color: var(--faint);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Thank-you pages
   -------------------------------------------------------------------------- */
.thanks-main {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: clamp(2.5rem, 7vw, 5rem);
}

.thanks-card {
  max-width: 640px;
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.thanks-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  box-shadow: 0 8px 24px rgba(232, 89, 36, 0.45);
}

.thanks-check svg {
  width: 44px;
  height: 44px;
}

.thanks-card p {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--orange);
  color: #1c0e04;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.pixelated {
  image-rendering: pixelated;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--navy-950);
}

/* Reduced motion */
@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;
  }
}
