@font-face {
  font-family: "SiwolGulim3";
  src: url("assets/a-siwolgu-il-gulim3.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RIDIBatang";
  src: url("assets/RIDIBatang.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --color-bg: #F3F6F8;
  --color-surface: #FFFFFF;
  --color-surface-muted: #F8FAFC;
  --color-surface-raised: #EEF4F7;
  --color-hero-line: #E2E8F0;
  --color-ink: #0F172A;
  --color-ink-soft: #334155;
  --color-muted: #64748B;
  --color-border: #CBD5E1;
  --color-border-strong: #94A3B8;
  --color-primary: #0F766E;
  --color-primary-strong: #115E59;
  --color-primary-soft: #F0FDFA;
  --color-brand-blue: #075CB8;
  --color-brand-blue-strong: #064B9D;
  --color-brand-teal: #00A7A0;
  --color-brand-green: #64B82E;
  --color-brand-yellow: #F4B73B;
  --color-success-soft: #ECFDF3;
  --color-success: #027A48;
  --color-warning-soft: #FFFBEB;
  --color-warning: #92400E;
  --color-danger: #B42318;
  --radius: 8px;
  --shadow-panel: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.06);
  --shadow-sticky: 0 8px 20px rgba(15, 23, 42, 0.06);
  --focus-ring: 0 0 0 3px rgba(15, 118, 110, 0.18);
  --font-heading: "SiwolGulim3", "Malgun Gothic", AppleSDGothicNeo, sans-serif;
  --font-body: "RIDIBatang", "Malgun Gothic", AppleSDGothicNeo, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

button,
input,
select {
  font-family: var(--font-heading);
  font-size: inherit;
  letter-spacing: 0;
}

button {
  min-height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

button:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-muted);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

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

.appShell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
}

.brandWordmark {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "mark main"
    "mark sub";
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--color-ink);
  column-gap: 10px;
  row-gap: 3px;
  text-decoration: none;
}

.topbar,
.heroKicker,
.heroSubtitle,
.heroActions,
.meta,
.sectionLabel,
.statLabel,
.statCard strong,
.paneHeader h2,
.searchBox label,
.groupSelect label,
.areaBlockHeader,
.areaChip,
.resultHeader,
.courseArea,
.courseName,
.detailHeader h2,
.actions,
.summaryPill,
.code,
.levelBadge,
.toast {
  font-family: var(--font-heading);
}

.brandWordmark::before {
  grid-area: mark;
  content: "";
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-primary);
}

.brandMain {
  grid-area: main;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.brandSub {
  grid-area: sub;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.eyebrow,
.sectionLabel {
  margin: 0;
  color: var(--color-primary-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.24;
}

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

.topbarTools[hidden] {
  display: none;
}

.meta {
  min-width: 184px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  background: var(--color-surface-muted);
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

main {
  min-width: 0;
}

.gateHero {
  position: relative;
  min-height: calc(100vh - 61px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 48px 28px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.gateHeroInner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(340px, 440px);
  grid-template-areas: "brand copy";
  align-items: center;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto;
  animation: gateEnter 0.22s ease-out both;
}

.heroCopy {
  grid-area: copy;
  align-self: center;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
}

.brandShowcase {
  grid-area: brand;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brandImage {
  display: block;
  width: min(100%, 720px);
  max-height: 470px;
  object-fit: contain;
}

.heroKicker {
  margin: 0 0 12px;
  color: var(--color-primary-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

#heroTitle {
  max-width: 560px;
  color: var(--color-ink);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
}

.heroSubtitle {
  margin: 14px 0 0;
  color: var(--color-ink-soft);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.heroLead {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--color-ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.heroAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--color-brand-blue);
  color: var(--color-surface);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(7, 92, 184, 0.24);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.heroAction:hover {
  background: var(--color-brand-blue-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 92, 184, 0.26);
}

.heroNote {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.portalMain[hidden] {
  display: none;
}

.launchTransition {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: hidden;
  background: rgba(243, 246, 248, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}

.launchTransition.isActive {
  opacity: 1;
  visibility: visible;
}

.transitionRail {
  position: absolute;
  top: -16vh;
  bottom: -16vh;
  width: 34vw;
  min-width: 260px;
  transform: translateX(-120%) skewX(-8deg);
}

.transitionRailPrimary {
  left: -8vw;
  background: var(--color-brand-blue);
}

.transitionRailSecondary {
  left: 12vw;
  background: var(--color-brand-teal);
}

.transitionRailAccent {
  left: 32vw;
  background: var(--color-brand-green);
}

.launchTransition.isActive .transitionRailPrimary {
  animation: transitionSweep 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.launchTransition.isActive .transitionRailSecondary {
  animation: transitionSweep 0.82s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.launchTransition.isActive .transitionRailAccent {
  animation: transitionSweep 0.82s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.transitionCard {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 10px;
  justify-items: center;
  width: min(520px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.96);
}

.launchTransition.isActive .transitionCard {
  animation: transitionCard 0.72s 0.08s ease both;
}

.transitionCard img {
  display: block;
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.transitionCard span {
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.portalMain {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  width: min(1280px, calc(100% - 32px));
  min-height: 740px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.9);
  box-shadow: var(--shadow-panel);
}

.overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.statCard {
  position: relative;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.statCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.statLabel {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.statCard strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.portalGrid {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(336px, 384px) minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
}

.filterPane,
.directoryPane,
.detailPane {
  min-height: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
}

.filterPane,
.directoryPane {
  display: flex;
  flex-direction: column;
}

.filterPane {
  padding: 16px;
}

.paneHeader {
  margin: -16px -16px 16px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--color-surface-muted);
}

.paneHeader h2 {
  margin: 4px 0 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

.searchBox,
.groupSelect,
.areaBlock {
  margin-top: 16px;
}

.searchBox label,
.groupSelect label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.searchRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
}

.searchRow input,
.groupSelect select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: var(--color-surface);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.searchRow input:focus,
.groupSelect select:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: var(--focus-ring);
}

.searchRow button {
  height: 44px;
  font-weight: 700;
}

.areaBlockHeader {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.areaScroller {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 192px;
  overflow: auto;
  margin-top: 12px;
  padding-right: 4px;
}

.areaChip {
  min-height: 32px;
  padding: 4px 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  background: var(--color-surface);
}

.areaChip.isActive {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

.resultHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--color-surface-muted);
}

.resultHeader strong {
  display: block;
  margin-top: 4px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

#resultHint {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
}

.results {
  min-height: 0;
  overflow: auto;
  padding: 12px;
}

.courseItem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 100%;
  min-height: 84px;
  margin: 0 0 8px;
  padding: 12px;
  text-align: left;
  border-color: var(--color-border);
  background: var(--color-surface);
}

.courseItem:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-muted);
}

.courseItem.isSelected {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  box-shadow: inset 4px 0 0 var(--color-primary);
}

.courseArea {
  color: var(--color-primary-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.courseName {
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.courseStats {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.detailPane {
  overflow: auto;
}

.emptyState {
  max-width: 620px;
  padding: 40px;
}

.emptyState h2 {
  margin: 8px 0;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.28;
}

.emptyState p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
}

.detailHeader {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(248, 250, 252, 0.98);
  box-shadow: var(--shadow-sticky);
}

.detailHeader .path {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.detailTitleRow {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.detailHeader h2 {
  margin: 4px 0 0;
  color: var(--color-ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.28;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.actions button {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--color-primary-strong);
  font-weight: 800;
  background: var(--color-primary-soft);
}

.summaryBar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.summaryPill {
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  background: var(--color-surface);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.summaryPill.warning {
  border-color: var(--color-warning);
  background: var(--color-warning-soft);
  color: var(--color-warning);
}

.standards {
  padding: 16px;
}

.standardBlock {
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}

.standardBlock.isLinked {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.standardHead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  background: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border);
}

.code {
  color: var(--color-primary-strong);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}

.statement {
  margin: 8px 0 0;
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.62;
  white-space: pre-line;
}

.standardHead button {
  align-self: start;
  min-height: 32px;
  padding: 4px 8px;
  color: var(--color-muted);
  font-weight: 700;
  background: var(--color-surface);
}

.explanation {
  margin: 0;
  padding: 12px 16px 0;
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.62;
  white-space: pre-line;
}

.levels {
  display: grid;
  gap: 8px;
  padding: 12px 16px 16px;
}

.levelRow {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.levelBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--color-success-soft);
  color: var(--color-success);
  font-weight: 900;
}

.levelText {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.62;
  white-space: pre-line;
}

.noLevel {
  padding: 12px 16px 16px;
  color: var(--color-danger);
  font-size: 13px;
  line-height: 1.45;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-surface);
  box-shadow: var(--shadow-panel);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.toast.isShown {
  opacity: 1;
  transform: translateY(0);
}

.siteFooter {
  width: min(1040px, calc(100% - 32px));
  margin: 28px auto 36px;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  text-align: left;
}

.siteFooter p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

@keyframes gateEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes transitionSweep {
  0% {
    transform: translateX(-120%) skewX(-8deg);
  }
  52% {
    transform: translateX(44vw) skewX(-8deg);
  }
  100% {
    transform: translateX(152vw) skewX(-8deg);
  }
}

@keyframes transitionCard {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.96);
  }
  22% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  76% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -58%) scale(1.02);
  }
}

@media (max-width: 1180px) {
  .portalGrid {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  }

  .detailPane {
    grid-column: 1 / -1;
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .appShell {
    overflow: visible;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .topbarTools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  .meta {
    min-width: 0;
    text-align: left;
  }

  .portalMain {
    height: auto;
    min-height: auto;
    width: calc(100% - 24px);
    margin-top: 0;
    padding: 12px;
  }

  .gateHero {
    min-height: calc(100vh - 97px);
    padding: 40px 20px 32px;
  }

  .gateHeroInner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy";
    gap: 20px;
  }

  .heroCopy {
    padding: 24px;
  }

  .brandShowcase {
    justify-content: center;
  }

  .brandImage {
    width: min(100%, 640px);
    max-height: 300px;
  }

  #heroTitle {
    font-size: 44px;
  }

  .overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portalGrid {
    grid-template-columns: 1fr;
  }

  .detailPane {
    min-height: 0;
  }

  .results {
    max-height: 360px;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding: 12px;
  }

  .brandWordmark {
    max-width: 100%;
  }

  .brandMain {
    font-size: 20px;
  }

  .brandSub {
    font-size: 12px;
  }

  .gateHero {
    padding: 28px 12px 24px;
  }

  .heroCopy {
    padding: 20px;
  }

  .brandShowcase {
    min-height: auto;
  }

  .brandImage {
    max-height: 220px;
  }

  #heroTitle {
    font-size: 36px;
  }

  .heroSubtitle {
    font-size: 16px;
  }

  .heroLead {
    font-size: 14px;
  }

  .heroActions {
    align-items: flex-start;
  }

  .heroNote {
    width: 100%;
  }

  .portalMain {
    gap: 12px;
    padding: 8px;
  }

  .overview,
  .portalGrid {
    gap: 8px;
  }

  .statCard {
    min-height: 68px;
    padding: 12px;
  }

  .statCard strong {
    font-size: 20px;
  }

  .filterPane {
    padding: 12px;
  }

  .paneHeader {
    margin: -12px -12px 12px;
    padding: 12px;
  }

  .areaScroller {
    max-height: 136px;
  }

  .resultHeader,
  .standardHead,
  .detailTitleRow {
    display: block;
  }

  #resultHint {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .actions {
    justify-content: start;
    margin-top: 12px;
  }

  .detailHeader,
  .standards {
    padding: 12px;
  }

  .emptyState {
    padding: 24px;
  }

  .transitionCard {
    width: calc(100vw - 24px);
    padding: 14px;
  }

  .transitionCard img {
    max-height: 150px;
  }
}

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