/*
Theme Name: Moban 8-2-48
Description: Chủ đề WordPress tùy chỉnh cho cổng thông tin game Bầu Cua Tôm Cá (Hoo Hey How) – phong cách tạp chí đen trắng kiểu mục lục: thanh phân cách dày mảnh, một điểm nhấn đỏ duy nhất và mục lục bám trái.
Version: 1.0
Author: Moban82
Text Domain: moban82
*/

/* Google Fonts (Space Grotesk + Be Vietnam Pro) are enqueued in functions.php — no @import here. */

/* ============================================================
   1. Design tokens — grayscale, one red accent, heavy/thin rules
   ============================================================ */
:root {
  --ink: #141414;
  --paper: #ffffff;
  --gray-bg: #f2f2ef;
  --gray: #6d6d68;
  --gray-line: #d8d8d3;
  --red: #e02f2f;
  --rule-heavy: 5px;
  --rule-thin: 1px;
  --font-display: 'Space Grotesk', 'Be Vietnam Pro', sans-serif;
  --font-body: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
  --wrap: 1200px;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--red);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

p {
  margin: 0 0 1.2em;
}

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

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

/* ============================================================
   3. Header — compact black top bar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: var(--rule-heavy) solid var(--red);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-brand__logo {
  width: 46px;
  height: 46px;
  border: 2px solid var(--paper);
}

.site-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paper);
  line-height: 1.15;
}

.site-brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-line);
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--paper);
  border: var(--rule-thin) solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: var(--rule-thin) solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) 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(-7px) rotate(-45deg);
}

.site-nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ink);
  border-bottom: var(--rule-heavy) solid var(--red);
}

.site-nav.is-open .site-nav__list {
  flex-direction: column;
  padding: 0.8rem 4% 1rem;
}

@media (min-width: 992px) {
  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* ============================================================
   4. Layout: left index sidebar + main column
   ============================================================ */
.ed-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.ed-index {
  position: sticky;
  top: 80px;
  border-right: var(--rule-thin) solid var(--ink);
  min-height: calc(100vh - 80px);
}

.ed-index__inner {
  padding: 2.2rem 1.6rem 2rem 4%;
}

.ed-index__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.9rem;
}

.ed-index__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ed-index__list li {
  border-top: var(--rule-thin) solid var(--ink);
}

.ed-index__list li:last-child {
  border-bottom: var(--rule-thin) solid var(--ink);
}

.ed-index__list a {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.75rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
}

.ed-index__list a:hover,
.ed-index__list a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.ed-index__list a.is-active .ed-index__no {
  color: var(--red);
}

.ed-index__no {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
}

.ed-index__nav {
  margin-top: 2.4rem;
}

.ed-index__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ed-index__nav li {
  border-top: var(--rule-thin) solid var(--gray-line);
}

.ed-index__nav a {
  display: block;
  padding: 0.55rem 0.4rem;
  font-size: 0.88rem;
  color: var(--gray);
}

.ed-index__nav a:hover {
  color: var(--red);
}

@media (max-width: 991px) {
  .ed-layout {
    grid-template-columns: 1fr;
  }

  .ed-index {
    position: static;
    min-height: 0;
    border-right: 0;
    border-bottom: var(--rule-heavy) solid var(--ink);
    overflow-x: auto;
  }

  .ed-index__inner {
    padding: 1.1rem 4% 0.9rem;
  }

  .ed-index__list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    width: max-content;
  }

  .ed-index__list li,
  .ed-index__list li:last-child {
    border: var(--rule-thin) solid var(--ink);
  }

  .ed-index__list a {
    white-space: nowrap;
    padding: 0.5rem 0.8rem;
  }

  .ed-index__nav {
    display: none;
  }
}

/* ============================================================
   5. Masthead
   ============================================================ */
.ed-main {
  min-width: 0;
}

.ed-masthead {
  padding: 3.4rem 5% 3rem;
  border-bottom: var(--rule-heavy) solid var(--ink);
}

.ed-masthead__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}

.ed-masthead__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.ed-masthead__lead {
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--gray);
}

/* ============================================================
   6. Chapters
   ============================================================ */
.ed-chapter {
  padding: 3.2rem 5%;
  border-bottom: var(--rule-thin) solid var(--ink);
}

.ed-chapter--dark {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--rule-heavy) solid var(--red);
}

.ed-chapter--dark h2,
.ed-chapter--dark h3 {
  color: var(--paper);
}

.ed-chapter--paper {
  background: var(--gray-bg);
}

.ed-chapter__head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  border-bottom: var(--rule-heavy) solid currentColor;
  padding-bottom: 0.8rem;
}

.ed-chapter__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
}

.ed-chapter__head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.ed-chapter__intro {
  max-width: 62ch;
  color: var(--gray);
}

.ed-chapter--dark .ed-chapter__intro {
  color: var(--gray-line);
}

.ed-chapter__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 860px) {
  .ed-chapter__grid {
    grid-template-columns: 1fr;
  }
}

.ed-chapter__figure {
  margin: 0;
  border: var(--rule-heavy) solid var(--ink);
}

.ed-chapter__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ed-chapter__figure figcaption {
  padding: 0.6rem 0.9rem;
  border-top: var(--rule-thin) solid var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   7. Rules table (dark chapter)
   ============================================================ */
.ed-rules {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.ed-rule {
  display: grid;
  grid-template-columns: 90px 220px 1fr;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.15rem 0.4rem;
  border-top: var(--rule-thin) solid rgba(255, 255, 255, 0.3);
}

.ed-rule:last-child {
  border-bottom: var(--rule-thin) solid rgba(255, 255, 255, 0.3);
}

.ed-rule__mult {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--red);
}

.ed-rule__case {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.ed-rule__text {
  color: var(--gray-line);
  font-size: 0.94rem;
}

@media (max-width: 760px) {
  .ed-rule {
    grid-template-columns: 70px 1fr;
  }

  .ed-rule__text {
    grid-column: 2;
  }
}

/* ============================================================
   8. Symbols
   ============================================================ */
.ed-symbols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 860px) {
  .ed-symbols { grid-template-columns: repeat(2, 1fr); }
}

.ed-symbol {
  border: var(--rule-thin) solid var(--ink);
  padding: 1.1rem;
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ed-symbol:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.ed-symbol img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: var(--rule-thin) solid var(--ink);
  filter: grayscale(0.2);
}

.ed-symbol__name {
  margin: 0.8rem 0 0.2rem;
  font-size: 1.05rem;
}

.ed-symbol__name::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--red);
  margin-right: 0.5rem;
}

.ed-symbol__note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--gray);
}

/* ============================================================
   9. Tips
   ============================================================ */
.ed-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 860px) {
  .ed-tips { grid-template-columns: 1fr; }
}

.ed-tip {
  background: var(--paper);
  border-top: var(--rule-heavy) solid var(--red);
  border-bottom: var(--rule-thin) solid var(--ink);
  border-left: var(--rule-thin) solid var(--ink);
  border-right: var(--rule-thin) solid var(--ink);
  padding: 1.3rem 1.3rem 1.4rem;
}

.ed-tip__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.ed-tip__title {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.ed-tip__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray);
}

/* ============================================================
   10. Quotes
   ============================================================ */
.ed-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 860px) {
  .ed-quotes { grid-template-columns: 1fr; }
}

.ed-quote {
  margin: 0;
  padding: 1.2rem 1.2rem 1.3rem;
  border-left: var(--rule-heavy) solid var(--red);
  background: var(--gray-bg);
}

.ed-quote p {
  font-style: italic;
  margin-bottom: 0.8rem;
  font-size: 0.96rem;
}

.ed-quote footer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============================================================
   11. CTA button & CTA block
   ============================================================ */
.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  padding: 0.9rem 2.2rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.cta-btn--block {
  display: block;
  width: max-content;
}

.ed-cta {
  padding: 3.4rem 5%;
  background: var(--red);
  color: var(--ink);
}

.ed-cta h2 {
  color: var(--paper);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 0.4rem;
}

.ed-cta p {
  color: #ffe9e9;
  max-width: 48ch;
}

.ed-cta .cta-btn {
  background: var(--ink);
  border-color: var(--ink);
}

.ed-cta .cta-btn:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ============================================================
   12. Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 1.1rem 0 0;
  font-size: 0.84rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray);
}

.breadcrumbs li + li::before {
  content: '/';
  margin-right: 0.4rem;
  color: var(--red);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--gray);
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   13. Archive rows
   ============================================================ */
.ed-page-head {
  padding: 2.6rem 0 1.6rem;
  border-bottom: var(--rule-heavy) solid var(--ink);
}

.ed-page-head__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.ed-page-head__title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  margin: 0;
}

.ed-page-head__desc {
  max-width: 62ch;
  color: var(--gray);
  margin: 0.9rem 0 0;
}

.ed-rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ed-row {
  border-bottom: var(--rule-thin) solid var(--ink);
}

.ed-row:first-child {
  border-top: var(--rule-thin) solid var(--ink);
}

.ed-row__inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem 0.4rem;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.ed-row__inner:hover {
  background: var(--gray-bg);
  padding-left: 1rem;
}

.ed-row__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--red);
}

.ed-row__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
}

.ed-row__excerpt {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 70ch;
}

.ed-row__side {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
}

.ed-row__arrow {
  font-size: 1.3rem;
  color: var(--red);
}

@media (max-width: 700px) {
  .ed-row__inner {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ed-row__side {
    grid-column: 2;
  }
}

/* ============================================================
   14. Single article
   ============================================================ */
.ed-article__head {
  padding: 2.6rem 0 1.8rem;
}

.ed-article__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--red);
  padding: 0.3rem 0.8rem;
  margin: 0 0 1.1rem;
}

.ed-article__title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  max-width: 24ch;
  margin-bottom: 1rem;
}

.ed-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray);
  border-top: var(--rule-heavy) solid var(--ink);
  border-bottom: var(--rule-thin) solid var(--ink);
  padding: 0.7rem 0;
}

.ed-article__figure {
  margin: 1.8rem 0 0;
  border: var(--rule-thin) solid var(--ink);
}

.ed-article__content {
  max-width: 760px;
  padding: 2.2rem 0 3.4rem;
  font-size: 1.04rem;
}

.ed-article__content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding-right: 0.12em;
  color: var(--red);
}

.ed-article__content h2,
.ed-article__content h3 {
  margin-top: 1.8em;
  border-top: var(--rule-thin) solid var(--ink);
  padding-top: 0.9em;
}

.ed-article__content blockquote {
  margin: 1.7em 0;
  padding: 1rem 1.4rem;
  border-left: var(--rule-heavy) solid var(--red);
  background: var(--gray-bg);
  font-style: italic;
}

.ed-related {
  border-top: var(--rule-heavy) solid var(--ink);
  padding: 2.6rem 0 1rem;
}

.ed-related__title {
  margin-bottom: 1.2rem;
}

/* ============================================================
   15. Fallback grid (index.php) & misc
   ============================================================ */
.page-head {
  padding: 2.4rem 0 0.8rem;
}

.section-title {
  margin: 0;
}

.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  padding: 1.6rem 0 3rem;
}

@media (min-width: 640px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  border: var(--rule-thin) solid var(--ink);
  background: var(--paper);
}

.post-card:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: var(--rule-thin) solid var(--ink);
}

.post-card__body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.post-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.post-card__meta {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  margin: 2rem 0 3rem;
  color: var(--gray);
  border: var(--rule-thin) dashed var(--ink);
}

.empty-state h2 {
  color: var(--ink);
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.4rem 0 3rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.7rem;
  border: var(--rule-thin) solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--paper);
}

.page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.page-numbers:hover {
  background: var(--ink);
  color: var(--paper);
}

.page-numbers.current:hover {
  background: var(--red);
}

/* ============================================================
   16. Footer
   ============================================================ */
.site-footer {
  border-top: var(--rule-heavy) solid var(--ink);
  background: var(--gray-bg);
  padding: 2.8rem 0 1.6rem;
  text-align: center;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
}

.site-footer__nav a:hover {
  color: var(--red);
}

.site-footer__badge {
  margin: 1.4rem 0;
}

.site-footer__disclaimer {
  max-width: 720px;
  margin: 1.2rem auto 0;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--gray);
}

.site-footer__disclaimer p {
  margin: 0.3em 0;
}

.site-footer__copy {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================================================
   17. Motion & a11y
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
