:root {
  --bg: #f3f4f5;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --ink: #17191f;
  --muted: #646a73;
  --line: #dfe3e8;
  --accent: #d8242f;
  --accent-dark: #a81721;
  --accent-soft: #ffe8ea;
  --steel: #343b46;
  --slate: #59616c;
  --shadow: 0 22px 70px rgba(23, 25, 31, .12);
  --shadow-soft: 0 14px 34px rgba(23, 25, 31, .08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --gap: clamp(18px, 3vw, 32px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, rgba(216, 36, 47, .12), transparent 34%),
    radial-gradient(circle at 100% 10%, rgba(52, 59, 70, .14), transparent 30%),
    linear-gradient(180deg, #f8f8f9 0%, var(--bg) 44%, #eceff2 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(23,25,31,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,25,31,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

p { margin: 0 0 16px; color: var(--slate); }

strong { color: var(--ink); }

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.04em;
}

h1 { font-size: clamp(42px, 7vw, 86px); max-width: 980px; }
h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 18px; }
h3 { font-size: clamp(21px, 2vw, 27px); margin-bottom: 12px; }

ul, ol { margin: 0; padding-left: 22px; color: var(--slate); }
li + li { margin-top: 8px; }

button, input { font: inherit; }

.reading-meter {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: transparent;
  z-index: 1001;
}

.reading-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6a4d);
  box-shadow: 0 0 20px rgba(216,36,47,.5);
}

.dock-header {
  position: sticky;
  top: 12px;
  z-index: 900;
  width: min(calc(100% - 28px), var(--max));
  margin: 12px auto 0;
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(223,227,232,.8);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.dock-header.scrolled {
  background: rgba(255,255,255,.9);
  border-color: rgba(216,36,47,.2);
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark img { width: 156px; height: auto; }
.footer-logo img { width: 180px; }

.top-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.top-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  transition: .25s ease;
}

.top-links a:hover {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23,25,31,.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ghost-link,
.pill-cta,
.primary-btn,
.secondary-btn,
.cookie-note button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 860;
  letter-spacing: -.02em;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.ghost-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
}

.pill-cta,
.primary-btn,
.cookie-note button {
  background: linear-gradient(135deg, var(--accent), #f04b36);
  color: #fff;
  box-shadow: 0 16px 28px rgba(216,36,47,.24);
}

.pill-cta { min-height: 44px; padding: 0 18px; }

.primary-btn, .secondary-btn {
  min-height: 52px;
  padding: 0 24px;
}

.secondary-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.82);
}

.pill-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.cookie-note button:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  z-index: 850;
  top: 96px;
  right: 14px;
  width: min(320px, calc(100vw - 28px));
  padding: 12px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 8px;
  transform: translateY(-8px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
}

.mobile-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel a {
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 760;
}

.hero-console {
  width: min(calc(100% - 32px), 1280px);
  margin: 38px auto 0;
  padding: clamp(22px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.62)),
    radial-gradient(circle at 84% 18%, rgba(216,36,47,.16), transparent 28%);
  border: 1px solid rgba(223,227,232,.9);
  border-radius: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-console::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 42px solid rgba(216,36,47,.08);
  pointer-events: none;
}

.eyebrow,
.screen-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .13em;
  font-weight: 920;
}

.eyebrow::before,
.screen-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216,36,47,.12);
}

.hero-copy { position: relative; z-index: 1; }
.hero-copy p { max-width: 720px; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.device-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(10px, 1.7vw, 18px);
  background: linear-gradient(145deg, #fff, #eceff2);
  border-radius: 34px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 32px 80px rgba(23,25,31,.18);
  transform: rotate(-1.5deg);
}

.device-stage img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(23,25,31,.18);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.visual-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.strip-card {
  padding: 8px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease;
}

.strip-card:hover,
.strip-card.active {
  transform: translateY(-4px);
  border-color: rgba(216,36,47,.32);
}

.strip-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 17px;
}

.layout-board {
  width: min(calc(100% - 32px), var(--max));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.rail-map {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.rail-title {
  padding: 12px;
  margin-bottom: 4px;
  border-radius: 18px;
  background: var(--steel);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.rail-map a {
  padding: 10px 12px;
  border-radius: 15px;
  color: var(--muted);
  font-weight: 780;
  font-size: 14px;
  transition: .24s ease;
}

.rail-map a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.content-stack {
  display: grid;
  gap: 22px;
}

.panel {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 64px;
  height: 64px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(216,36,47,.12), rgba(89,97,108,.08));
  transform: rotate(12deg);
  pointer-events: none;
}

.panel > * { position: relative; z-index: 1; }

.panel-heading {
  display: grid;
  margin-bottom: 8px;
}

.table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  margin-top: 24px;
}

.table-shell table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th, td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #f2f4f6;
}

td:first-child {
  color: var(--ink);
  font-weight: 860;
  width: 26%;
}

td { color: var(--slate); }

tr:last-child td { border-bottom: 0; }

.feature-figure {
  padding: 12px;
}

.feature-figure figure,
.bonus-layout figure,
.inline-device {
  margin: 0;
}

.feature-figure img,
.inline-device img,
.bonus-layout img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(23,25,31,.14);
}

.feature-figure figcaption,
.inline-device figcaption,
.bonus-layout figcaption {
  padding: 0 14px 8px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  gap: var(--gap);
}

.check-console {
  padding: 16px;
  display: grid;
  gap: 9px;
  align-self: start;
  background: #f5f6f8;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.check-console button {
  display: flex;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--slate);
  background: #fff;
  cursor: pointer;
  transition: .2s ease;
}

.check-console button::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-right: 10px;
  border-radius: 7px;
  border: 1px solid #cfd5dd;
  background: #fff;
  transition: .2s ease;
}

.check-console button.checked {
  color: var(--ink);
  border-color: rgba(216,36,47,.22);
  background: var(--accent-soft);
}

.check-console button.checked::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 4px var(--accent-soft);
}

.check-status {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--steel);
  color: #fff;
  font-weight: 850;
}

.timeline-panel {
  display: grid;
  grid-template-columns: 1fr;
}

.inline-device {
  margin: 12px 0 26px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
}

.timeline-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: steps;
}

.timeline-list li {
  margin: 0;
  counter-increment: steps;
  padding: 16px 16px 16px 62px;
  position: relative;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--slate);
}

.timeline-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.app-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr);
  gap: var(--gap);
  align-items: start;
}

.app-copy { align-self: center; }

.phone-card {
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(145deg, #20252c, #5e6670);
  box-shadow: 0 24px 60px rgba(23,25,31,.24);
}

.phone-card img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.test-grid {
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.test-grid ul,
.rule-pills ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.test-grid li,
.rule-pills li {
  margin: 0;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.bonus-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(310px, .75fr);
  gap: var(--gap);
  align-items: start;
  margin: 26px 0;
}

.step-card,
.rule-pills,
.cashier-card,
.fit-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
}

.rule-pills { margin-top: 10px; }

.games-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.76)),
    radial-gradient(circle at top right, rgba(216,36,47,.12), transparent 40%);
}

.game-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.tab-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 880;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane ul { margin-top: 16px; }

.cashier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.cashier-card {
  background: #fff;
}

.cashier-card.danger {
  background: #fff6f6;
  border-color: rgba(216,36,47,.18);
}

.compact { margin-top: 4px; }

.security-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: var(--gap);
  align-items: center;
}

.secure-badge {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 48px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--accent), var(--accent-dark)),
    var(--accent);
  box-shadow: 0 24px 54px rgba(216,36,47,.25);
}

.secure-badge span,
.secure-badge strong {
  font-size: clamp(58px, 8vw, 96px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.08em;
}

.secure-badge small {
  display: block;
  max-width: 120px;
  color: rgba(255,255,255,.84);
  font-weight: 760;
}

.pros-cons,
.fit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.pros-cons::after,
.fit-panel::after { display: none; }

.pros-block,
.cons-block,
.fit-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.cons-block,
.fit-card.muted {
  background: #f7f2f2;
  border-color: rgba(216,36,47,.18);
}

.responsible-panel {
  background: linear-gradient(135deg, #242a33, #111318);
}

.responsible-panel h2,
.responsible-panel strong { color: #fff; }
.responsible-panel p { color: rgba(255,255,255,.74); }

.conclusion-panel {
  background:
    linear-gradient(135deg, rgba(216,36,47,.92), rgba(168,23,33,.94)),
    var(--accent);
}

.conclusion-panel h2,
.conclusion-panel p,
.conclusion-panel .screen-label { color: #fff; }
.conclusion-panel .screen-label::before { background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,.18); }

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.faq-item button::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  flex: 0 0 auto;
}

.faq-item.open button::after { content: "−"; }

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
}

.floating-cta {
  position: fixed;
  z-index: 700;
  right: 20px;
  bottom: 22px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(216,36,47,.32);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .25s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-note {
  position: fixed;
  z-index: 780;
  left: 20px;
  bottom: 20px;
  width: min(390px, calc(100vw - 40px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-note p {
  margin: 0;
  font-size: 13px;
}

.cookie-note button {
  min-width: max-content;
  padding: 10px 14px;
}

.cookie-note.hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: .24s ease;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 24px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 36px;
  background: #111318;
  color: #fff;
  display: grid;
  gap: 12px;
}

.site-footer p {
  max-width: 820px;
  color: rgba(255,255,255,.72);
}

.footer-warning {
  color: #fff !important;
  font-weight: 820;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.section-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .top-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-console { grid-template-columns: 1fr; }
  .layout-board { grid-template-columns: 1fr; }
  .rail-map { display: none; }
  .split-panel,
  .app-panel,
  .bonus-layout,
  .security-panel { grid-template-columns: 1fr; }
  .secure-badge { width: min(280px, 100%); justify-self: start; }
}

@media (max-width: 780px) {
  .dock-header {
    top: 8px;
    width: min(calc(100% - 16px), var(--max));
    border-radius: 28px;
  }
  .brand-mark img { width: 132px; }
  .pill-cta, .ghost-link { display: none; }
  .hero-console,
  .layout-board,
  .visual-strip,
  .site-footer { width: min(calc(100% - 20px), var(--max)); }
  .hero-console { margin-top: 18px; border-radius: 34px; }
  .visual-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel { border-radius: 28px; }
  .timeline-list,
  .test-grid ul,
  .rule-pills ul,
  .cashier-grid,
  .pros-cons,
  .fit-panel { grid-template-columns: 1fr; }
  .game-tabs { width: 100%; display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; }
  .tab-btn { border-radius: 15px; }
  .cookie-note { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(36px, 13vw, 54px); }
  .hero-actions { flex-direction: column; }
  .primary-btn, .secondary-btn { width: 100%; }
  .visual-strip { grid-template-columns: 1fr; }
  .panel { padding: 22px; }
  th, td { padding: 14px; }
  .floating-cta { width: 58px; height: 58px; border-radius: 20px; right: 14px; bottom: 14px; }
}

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