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

:root {
  --ink: #111111;
  --paper: #FFFFFF;
  --night: #1A1A2E;

  --zone-yellow: #FFD166;
  --zone-orange: #F4A261;
  --zone-lake: #4ECDC4;
  --zone-green: #2EC4B6;

  --accent-neon: #06FFA5;
  --accent-orange: #FF6B35;

  --status-new: #FF006E;
  --status-stable: #00B4D8;
  --status-feedback: #9B5DE5;

  --tag-red: #FF595E;
  --tag-yellow: #FFCA3A;
  --tag-green: #8AC926;
  --tag-blue: #1982C4;
  --tag-purple: #6A4C93;
  --tag-coral: #FF924C;

  --header-w: 280px;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;

  --font-heading: "Arial Narrow", "Roboto Condensed", "Liberation Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "Courier New", "Fira Mono", "SF Mono", "Cascadia Mono", Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(1.8rem, 4vw + 0.6rem, 3rem);
}

h2 {
  font-size: clamp(1.3rem, 2vw + 0.5rem, 1.9rem);
}

p {
  margin: 0 0 1rem;
}

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

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

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

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

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--accent-neon);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: top 0.25s;
}

.skip-link:focus-visible {
  top: 1rem;
}

#main-content {
  display: block;
  min-height: 75vh;
}

@media (min-width: 901px) {
  #main-content,
  .site-footer {
    margin-left: var(--header-w);
  }
}

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--header-w);
  display: flex;
  flex-direction: column;
  background: var(--night);
  color: #fff;
  border-right: 3px solid var(--ink);
  z-index: 100;
  padding: 1.75rem 1.25rem 1.25rem;
}

.site-header__main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand__seal {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--zone-yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  font-size: 1.7rem;
  font-weight: 900;
  font-family: var(--font-heading);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: inherit;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  line-height: 1.3;
}

.site-header .brand__tag {
  color: var(--accent-neon);
}

.site-nav {
  margin-top: 2.5rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  counter-reset: navCounter;
}

.site-nav__item {
  counter-increment: navCounter;
}

.site-nav__link {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  color: #fff;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.site-nav__link::before {
  content: counter(navCounter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
  display: inline-block;
  margin-right: 0.6rem;
  min-width: 1.6rem;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-nav__link[aria-current="page"] {
  background: var(--accent-neon);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.site-nav__link[aria-current="page"]::before {
  opacity: 1;
}

.site-header__meta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.site-header__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-neon);
  box-shadow: 0 0 0 3px rgba(6, 255, 165, 0.2);
  animation: pulse 2s infinite;
}

.site-header__dot::after {
  content: none;
}

.nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0;
    border-right: none;
    border-bottom: 3px solid var(--ink);
  }

  .site-header__main {
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 1rem;
  }

  .site-header__meta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--zone-yellow);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }

  .nav-toggle__bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav[data-open="true"] {
    display: block;
  }
}

.scroll-progress {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0%;
  background: var(--accent-neon);
  border-radius: 0 0 0 4px;
  z-index: 5;
}

@media (min-width: 901px) {
  .scroll-progress {
    display: block;
  }
}

@media (max-width: 900px) {
  .scroll-progress {
    display: none;
  }
}

.site-footer {
  background: var(--zone-yellow);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  padding: 3.5rem 1.5rem 2.5rem;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr) 1.4fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand--footer .brand__seal {
  background: var(--ink);
  color: var(--zone-yellow);
}

.brand--footer .brand__name {
  font-size: 1.6rem;
}

.brand--footer .brand__tag {
  color: rgba(17, 17, 17, 0.7);
}

.site-footer__group {
  min-width: 0;
}

.site-footer__heading {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(17, 17, 17, 0.2);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0;
}

.site-footer__list a::before {
  content: "→";
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.6;
  transition: transform 0.2s;
}

.site-footer__list a:hover::before {
  transform: translateX(3px);
}

.site-footer__list a:hover {
  color: var(--accent-orange);
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer__phone {
  font-size: 0.85rem;
  opacity: 0.85;
}

.site-footer__icp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.65;
  margin: 0;
}

.site-footer__copyright {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.narrow-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  border-bottom: 4px solid var(--ink);
  padding: 4.5rem 1.5rem;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.6rem;
}

.page-hero__desc {
  font-size: 1.05rem;
  max-width: 42em;
  opacity: 0.85;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb li + li::before {
  content: "→";
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--accent-orange);
  font-weight: 700;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  padding-left: 0.9rem;
  border-left: 6px solid var(--accent-orange);
  margin-bottom: 1rem;
}

.section-title--yellow {
  border-left-color: var(--zone-yellow);
}

.section-title--lake {
  border-left-color: var(--zone-lake);
}

.section-title--green {
  border-left-color: var(--zone-green);
}

.section-title--neon {
  border-left-color: var(--accent-neon);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn--primary {
  background: var(--accent-orange);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn--secondary {
  background: var(--accent-neon);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn--secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: rgba(17, 17, 17, 0.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.card__media {
  background: var(--zone-lake);
  min-height: 140px;
  display: block;
}

.card__body {
  padding: 1.25rem;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}

.card__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.7);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
}

.tile {
  border-radius: 1.5rem;
  border: 2px solid var(--ink);
  padding: 1.75rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.tile--yellow {
  background: var(--zone-yellow);
}

.tile--orange {
  background: var(--zone-orange);
}

.tile--lake {
  background: var(--zone-lake);
}

.tile--green {
  background: var(--zone-green);
}

.tile--night {
  background: var(--night);
  color: #fff;
}

.tile--night .tile__title {
  color: #fff;
}

.tile__title {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.tile__count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.8;
}

.list-rows {
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.list-row {
  display: grid;
  grid-template-columns: 2.5rem auto auto 1fr;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s;
}

.list-row:hover {
  background: rgba(17, 17, 17, 0.04);
}

.list-row__seq {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.6;
}

.list-row__title {
  font-weight: 800;
  font-family: var(--font-heading);
}

.list-row__zone {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--tag-yellow);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition: transform 0.15s, box-shadow 0.15s;
}

.tag-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 var(--ink);
}

.tag-item--1 {
  background: var(--tag-red);
  color: #fff;
}

.tag-item--2 {
  background: var(--tag-yellow);
}

.tag-item--3 {
  background: var(--tag-green);
}

.tag-item--4 {
  background: var(--tag-blue);
  color: #fff;
}

.tag-item--5 {
  background: var(--tag-purple);
  color: #fff;
}

.tag-item--6 {
  background: var(--tag-coral);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
}

.badge--new {
  background: var(--status-new);
  color: #fff;
}

.badge--stable {
  background: var(--status-stable);
  color: var(--ink);
}

.badge--feedback {
  background: var(--status-feedback);
  color: #fff;
}

.badge--hot {
  background: var(--accent-orange);
  color: var(--ink);
}

.seq-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 0.7rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 2px 2px 0 var(--ink);
}

.seq-mark--top {
  background: var(--accent-neon);
}

.seq-mark--hot {
  background: var(--accent-orange);
  color: var(--ink);
}

.metric-bar {
  background: rgba(17, 17, 17, 0.1);
  height: 0.6rem;
  border-radius: 999px;
  overflow: hidden;
}

.metric-bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent-orange);
}

.metric-bar__fill--neon {
  background: var(--accent-neon);
}

.metric-bar__fill--lake {
  background: var(--zone-lake);
}

.index-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.index-bar__link {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.4rem;
  border: 2px solid var(--ink);
  border-radius: 0.8rem;
  background: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}

.index-bar__link:hover {
  background: var(--zone-yellow);
}

.index-bar__link--current {
  background: var(--ink);
  color: var(--zone-yellow);
}

.hscroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hscroll > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.compare-table th,
.compare-table td {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.2);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--zone-lake);
  font-family: var(--font-heading);
  font-size: 1rem;
  border-bottom: 2px solid var(--ink);
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}

.zone-bg--yellow {
  background: var(--zone-yellow);
}

.zone-bg--orange {
  background: var(--zone-orange);
}

.zone-bg--lake {
  background: var(--zone-lake);
}

.zone-bg--green {
  background: var(--zone-green);
}

.zone-bg--night {
  background: var(--night);
  color: #fff;
}

.thumb {
  display: block;
  position: relative;
  background: var(--zone-lake);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  overflow: hidden;
}

.thumb::after {
  content: "IMG";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.6);
  background: repeating-linear-gradient(
    45deg,
    transparent 0 14px,
    rgba(17, 17, 17, 0.03) 14px 16px
  );
}

.thumb--16x9 {
  aspect-ratio: 16 / 9;
}

.thumb--4x3 {
  aspect-ratio: 4 / 3;
}

.thumb--1x1 {
  aspect-ratio: 1;
}

[data-expand-target] {
  display: none;
}

[data-expand-target][data-open="true"] {
  display: block;
}

.expander {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.expander::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s;
}

.expander[aria-expanded="true"]::after {
  content: "−";
}

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

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .list-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

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