:root {
  --global-font-size: 15.5px;
  --global-bg: #f7fbff;
  --font-color: #4c5564;
  --text-highlight-color: #1f2d3d;
  --card-bg: rgba(255, 255, 255, 0.82);
  --card-bg-solid: #ffffff;
  --card-border: rgba(255, 255, 255, 0.68);
  --card-box-shadow: 0 8px 28px rgba(31, 45, 61, 0.08);
  --card-hover-box-shadow: 0 14px 38px rgba(31, 45, 61, 0.14);
  --btn-bg: #49b1f5;
  --btn-bg-2: #7c6ff6;
  --btn-hover-color: #ff7242;
  --cyan: #00c4b6;
  --pink: #ff7eb6;
  --orange: #ff9d5c;
  --light-grey: #eef3f8;
  --dark-grey: #8b98a7;
  --blockquote-bg: rgba(73, 177, 245, 0.1);
  --blockquote-color: #5d6b7a;
  --radius: 18px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--font-color);
  font-size: var(--global-font-size);
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 2;
  background: var(--global-bg);
  -webkit-font-smoothing: antialiased;
}

*::selection {
  color: #fff;
  background: var(--cyan);
}

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

button {
  border: 0;
  font: inherit;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

#web-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 111, 246, 0.20), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(73, 177, 245, 0.22), transparent 24%),
    radial-gradient(circle at 76% 86%, rgba(255, 126, 182, 0.18), transparent 26%),
    linear-gradient(180deg, #eff8ff 0%, #fff7fb 52%, #f8fbff 100%);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(73, 177, 245, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 54px 42px, rgba(255, 126, 182, 0.12) 0 1px, transparent 1px);
  background-size: 72px 72px;
}

.shell {
  width: min(var(--shell), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  color: #fff;
}

.brand,
.main-nav {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  text-shadow: 0 2px 12px rgba(31, 45, 61, 0.26);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  background: linear-gradient(135deg, var(--btn-bg), var(--btn-bg-2));
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(73, 177, 245, 0.35);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span:last-child {
  max-width: 260px;
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  opacity: 0.86;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(31, 45, 61, 0.12);
  backdrop-filter: blur(16px);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a::before {
  margin-right: 7px;
  font-size: 0.9em;
}

.main-nav a[data-route="home"]::before {
  content: "⌂";
}

.main-nav a[data-route="tech"]::before {
  content: "{}";
  font-family: "JetBrains Mono", monospace;
}

.main-nav a[data-route="game"]::before {
  content: "◇";
}

.main-nav a:hover,
.main-nav a.nav-active {
  color: var(--text-highlight-color);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.brand:focus-visible,
.main-nav a:focus-visible,
.button:focus-visible,
.subnav button:focus-visible,
.back-button:focus-visible,
.category-tile:focus-visible,
.article-card:focus-visible,
.featured-card:focus-visible,
.collection-card:focus-visible {
  outline: 3px solid rgba(73, 177, 245, 0.35);
  outline-offset: 3px;
}

.banner {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background: #b9dafa;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.banner-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 30, 46, 0.28) 0%, rgba(22, 30, 46, 0.12) 42%, rgba(247, 251, 255, 0.98) 100%),
    radial-gradient(circle at 50% 45%, rgba(73, 177, 245, 0.16), transparent 42%);
}

.banner-title {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 120px 20px 90px;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 24px rgba(31, 45, 61, 0.36);
}

.banner-title h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.banner-subtitle {
  min-height: 44px;
  margin: 26px 0 0;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(31, 45, 61, 0.16);
  backdrop-filter: blur(12px);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
}

.scroll-hint {
  position: absolute;
  bottom: 38px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  animation: floatDown 1.8s ease-in-out infinite;
}

.view {
  display: none;
}

.view-active {
  display: block;
}

.hero-band,
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.hero-band {
  margin-top: -76px;
  padding-bottom: 22px;
}

.hero-copy,
.section-panel,
.author-card,
.article-card,
.collection-card,
.article-layout,
.empty-state,
.featured-card,
.page-head {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--card-box-shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-copy {
  min-height: 360px;
  padding: clamp(28px, 5vw, 48px);
}

.hero-copy h1,
.page-head h1,
.article-hero h1 {
  margin: 0;
  color: var(--text-highlight-color);
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
}

.eyebrow,
.label,
.article-tag,
.article-card-meta span,
.meta-chip,
.featured-link,
.collection-count {
  color: var(--btn-bg);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow,
.label {
  margin: 0 0 14px;
}

.hero-text,
.page-head p,
.author-meta p,
.featured-card p,
.category-tile p,
.article-card p,
.article-summary,
.article-content p,
.article-content li,
.article-content blockquote,
.empty-state p,
.collection-card p {
  color: var(--font-color);
  line-height: 1.9;
}

.hero-text {
  max-width: 66ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.subnav button,
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button-primary,
.subnav button.subnav-active {
  color: #fff;
  background: linear-gradient(135deg, var(--btn-bg), var(--btn-bg-2));
  box-shadow: 0 12px 26px rgba(73, 177, 245, 0.25);
}

.button-secondary,
.subnav button,
.back-button,
.meta-chip {
  color: var(--btn-bg);
  background: rgba(73, 177, 245, 0.11);
}

.button:hover,
.subnav button:hover,
.back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(73, 177, 245, 0.22);
}

.hero-aside {
  position: sticky;
  top: 88px;
}

.author-card {
  overflow: hidden;
  text-align: center;
}

.author-card::before {
  display: block;
  height: 96px;
  content: "";
  background:
    linear-gradient(135deg, rgba(73, 177, 245, 0.78), rgba(255, 126, 182, 0.66)),
    url("./assets/yaeovoi-card.jpg") center / cover;
}

.avatar-frame {
  width: 124px;
  height: 124px;
  margin: -62px auto 14px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 45, 61, 0.16);
}

.avatar-frame:hover {
  animation: avatarTurn 0.9s ease;
}

.avatar-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta {
  padding: 0 24px 20px;
}

.author-meta h2 {
  margin: 0;
  color: var(--text-highlight-color);
  font-size: 1.65rem;
}

.author-meta p {
  margin: 8px 0 0;
}

.github-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 18px;
  padding: 8px 16px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #24292f, var(--btn-bg-2));
  box-shadow: 0 12px 26px rgba(36, 41, 47, 0.18);
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.github-portal:hover,
.github-portal:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(36, 41, 47, 0.26);
  outline: none;
}

.github-portal span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  opacity: 0.86;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(73, 177, 245, 0.12);
}

.author-stats span {
  display: grid;
  gap: 2px;
  padding: 14px 8px;
  color: var(--dark-grey);
  font-size: 0.8rem;
}

.author-stats span + span {
  border-left: 1px solid rgba(73, 177, 245, 0.12);
}

.author-stats strong {
  color: var(--btn-bg);
  font-family: "JetBrains Mono", monospace;
}

.home-grid {
  padding: 0 0 86px;
}

.section-panel {
  padding: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2,
.empty-state h2 {
  margin: 0;
  color: var(--text-highlight-color);
  font-size: 1.7rem;
}

.feature-slot {
  min-height: 230px;
}

.featured-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  cursor: pointer;
}

.featured-card::after,
.category-tile::after,
.collection-card::after,
.article-card::after {
  position: absolute;
  right: -30px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(73, 177, 245, 0.18), rgba(255, 126, 182, 0.14));
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.featured-card:hover,
.article-card:hover,
.collection-card:hover,
.category-tile:hover,
.section-panel:hover,
.author-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-hover-box-shadow);
}

.featured-card:hover::after,
.category-tile:hover::after,
.collection-card:hover::after,
.article-card:hover::after {
  opacity: 0.8;
  transform: scale(1.12);
}

.featured-card-media {
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
}

.featured-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(31, 45, 61, 0.12);
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-image {
  transform: scale(1.04);
}

.featured-meta,
.article-card-meta,
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.featured-card h3,
.category-tile h3,
.collection-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-highlight-color);
  font-size: 1.48rem;
  line-height: 1.35;
}

.featured-card p,
.collection-card p,
.category-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.featured-link {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 4px;
  color: var(--btn-hover-color);
}

.category-links,
.collection-grid {
  display: grid;
  gap: 14px;
}

.category-tile,
.collection-card {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--card-box-shadow);
  cursor: pointer;
}

.tile-index {
  position: relative;
  z-index: 1;
  color: var(--pink);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.collection-grid {
  margin-bottom: 22px;
}

.collection-grid:empty {
  display: none;
}

.collection-grid-head {
  padding: 4px 4px 0;
}

.collection-grid-head h2 {
  margin: 0;
  color: var(--text-highlight-color);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.collection-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--btn-bg), var(--btn-bg-2));
}

.section-view,
.article-view {
  padding: 112px 0 92px;
}

.page-head {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: clamp(28px, 5vw, 48px);
}

.page-head::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 177, 245, 0.2), transparent 68%);
}

.page-head h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-head p:last-child {
  position: relative;
  z-index: 1;
  max-width: 72ch;
  margin: 12px 0 0;
}

.collection-page-head {
  display: block;
}

.subnav {
  display: flex;
  width: fit-content;
  gap: 10px;
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--card-bg);
  box-shadow: var(--card-box-shadow);
  backdrop-filter: blur(18px);
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 22px;
  align-items: center;
  min-height: 166px;
  padding: 26px 30px;
  overflow: hidden;
  cursor: pointer;
}

.article-card h2 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--text-highlight-color);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.article-card p {
  position: relative;
  z-index: 1;
  max-width: 72ch;
  margin: 10px 0 0;
}

.article-card-tail {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 12px;
  color: var(--dark-grey);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.tail-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btn-bg), var(--btn-bg-2));
  box-shadow: 0 10px 22px rgba(73, 177, 245, 0.22);
}

.hidden {
  display: none;
}

.back-button {
  gap: 8px;
  margin-bottom: 18px;
}

.article-shell {
  max-width: 980px;
}

.article-layout {
  overflow: hidden;
}

.article-hero {
  padding: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid rgba(73, 177, 245, 0.14);
}

.article-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
}

.article-summary {
  max-width: 72ch;
  margin: 18px 0 0;
}

.article-meta-row {
  margin-top: 20px;
}

.article-content {
  max-width: 820px;
  padding: 12px clamp(24px, 5vw, 52px) 52px;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  position: relative;
  margin: 44px 0 18px;
  color: var(--text-highlight-color);
  line-height: 1.35;
}

.article-content h2 {
  padding-left: 16px;
  font-size: 1.75rem;
}

.article-content h2::before {
  position: absolute;
  top: 0.22em;
  bottom: 0.22em;
  left: 0;
  width: 5px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--btn-bg), var(--pink));
}

.article-content h3 {
  font-size: 1.35rem;
}

.article-content p,
.article-content ul,
.article-content blockquote,
.article-content pre {
  margin: 1.45em 0;
}

.article-content ul {
  padding-left: 1.3rem;
}

.article-content a {
  color: var(--btn-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-media {
  margin: 0 0 28px;
}

.article-media img,
.article-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--card-box-shadow);
}

.article-content code {
  padding: 0.16em 0.42em;
  color: #f47466;
  background: rgba(27, 31, 35, 0.05);
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92em;
}

.article-content pre {
  overflow-x: auto;
  padding: 22px 18px 18px;
  color: #eff;
  border-radius: 14px;
  background: #212121;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.article-content pre::before {
  display: block;
  width: 12px;
  height: 12px;
  margin: -8px 0 12px;
  content: "";
  border-radius: 50%;
  background: #fc625d;
  box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
}

.article-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.article-content blockquote {
  padding: 14px 18px;
  color: var(--blockquote-color);
  border-left: 4px solid var(--btn-bg);
  border-radius: 0 12px 12px 0;
  background: var(--blockquote-bg);
}

.empty-state {
  min-height: 180px;
  padding: 28px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(31, 45, 61, 0.88), rgba(73, 177, 245, 0.72)),
    url("./assets/yaeovoi-head.jpg") center / cover;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(20, 28, 42, 0.28);
}

.footer-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  font-size: 0.94rem;
}

.skeleton-block {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
  background-size: 240% 100%;
  animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@keyframes avatarTurn {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero-band,
  .home-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    position: static;
  }

  .featured-card-media {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 240px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav a {
    flex: 1;
    padding: 0 8px;
  }

  .banner-title {
    padding-top: 152px;
  }

  .hero-band {
    margin-top: -42px;
  }

  .hero-copy,
  .section-panel,
  .page-head,
  .article-card {
    padding: 24px;
  }

  .hero-copy h1,
  .page-head h1,
  .article-hero h1 {
    max-width: none;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card-tail {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .subnav {
    width: 100%;
  }

  .subnav button {
    flex: 1;
  }

  .footer-row {
    flex-direction: column;
  }
}

@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;
  }
}
