/* ============================================================
   PORTFOLIO WEBSITE — COMPLETE STYLESHEET
   Dark-themed artist portfolio with 3D vertical wheel gallery
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  /* Colors - Monochrome Dark */
  --surface: #131313;
  --surface-lowest: #0E0E0E;
  --surface-low: #1B1B1B;
  --surface-container: #1F1F1F;
  --surface-high: #2A2A2A;
  --surface-highest: #353535;
  --surface-bright: #393939;
  --on-surface: #E2E2E2;
  --primary: #FFFFFF;
  --muted: #919191;
  --outline-variant: #474747;
  --error: #FFB4AB;

  /* Typography */
  --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display-lg: 3.5rem;
  --headline-md: 1.75rem;
  --body-lg: 1rem;
  --body-md: 0.875rem;
  --label-sm: 0.6875rem;

  /* Spacing (8px unit) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Roundness */
  --radius-md: 0.375rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--surface);
  color: var(--on-surface);
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  body.detail-open {
    overflow-y: auto;
    height: auto;
  }
}

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

button {
  font-family: var(--font-family);
}

a {
  color: inherit;
}


/* ------------------------------------------------------------
   3. NAVIGATION
   ------------------------------------------------------------ */
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  background: transparent;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

#nav.scrolled {
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-size: var(--headline-md);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: var(--body-md);
  color: var(--muted);
  text-decoration: none;
  margin-left: var(--space-4);
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}


/* ------------------------------------------------------------
   4. SECTION BASE
   ------------------------------------------------------------ */
.section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.section.hidden {
  opacity: 0;
  pointer-events: none;
}


/* ------------------------------------------------------------
   5. 3D WHEEL GALLERY (.section--gallery)
   ------------------------------------------------------------ */
.section--gallery {
  background: var(--surface);
}

.wheel-container {
  perspective: 1200px;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wheel {
  transform-style: preserve-3d;
  position: relative;
  width: 400px;
  height: 300px;
}

.wheel-card {
  position: absolute;
  width: 400px;
  height: 300px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
  background: var(--surface-lowest);
}

.wheel-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

.wheel-card.active {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}


/* ------------------------------------------------------------
   6. PROJECT INFO PANEL (.project-info)
   ------------------------------------------------------------ */
.project-info {
  position: absolute;
  right: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  max-width: 300px;
  pointer-events: none;
}

.project-info__number {
  font-size: var(--label-sm);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-info__date {
  font-size: var(--body-md);
  color: var(--on-surface);
  font-weight: 600;
  margin: 0.25rem 0;
}

.project-info__title {
  font-size: var(--headline-md);
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-1) 0;
  line-height: 1.2;
}

.project-info__style,
.project-info__medium {
  font-size: var(--body-md);
  color: var(--muted);
}

.project-info__medium {
  margin-top: 0.25rem;
}


/* ------------------------------------------------------------
   7. SCROLL HINT
   ------------------------------------------------------------ */
.scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--muted);
  font-size: var(--label-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}

.scroll-hint__arrow {
  width: 1px;
  height: 40px;
  background: var(--muted);
  margin: var(--space-1) auto 0;
  animation: scrollBounce 2s infinite;
}

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


/* ------------------------------------------------------------
   8. ABOUT SECTION (.section--about)
   ------------------------------------------------------------ */
.section--about {
  background: var(--surface);
}

.about-container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--space-8);
  max-width: 1400px;
  padding: 0 var(--space-12);
  align-items: center;
  width: 100%;
}

.about-image__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: var(--body-md);
}

.about-image__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.label {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content__name {
  font-size: var(--display-lg);
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-1) 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-content__tagline {
  font-size: var(--body-lg);
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.about-content__bio {
  font-size: var(--body-md);
  color: var(--on-surface);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.about-content__tagline--ko {
  font-size: var(--body-md);
  color: var(--muted);
  margin-top: 0.2rem;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.about-content__bio--ko {
  font-size: var(--body-md);
  color: var(--on-surface);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  opacity: 0.65;
}

.timeline-desc--ko {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.7;
}

.about-timeline {
  border-left: 1px solid var(--surface-highest);
  padding-left: var(--space-3);
}

.timeline-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-size: var(--body-md);
  color: var(--muted);
  font-weight: 600;
  min-width: 50px;
  flex-shrink: 0;
}

.timeline-desc {
  font-size: var(--body-md);
  color: var(--on-surface);
}


/* ------------------------------------------------------------
   9. CONTACT SECTION (.section--contact)
   ------------------------------------------------------------ */
.section--contact {
  background: var(--surface);
}

.contact-container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 0 var(--space-4);
}

.contact-title {
  font-size: var(--display-lg);
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-1) 0 var(--space-6);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-links {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  color: var(--muted);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--surface-low);
  transition: all 0.3s var(--ease-out);
  min-width: 140px;
}

.contact-link:hover {
  background: var(--surface-container);
  color: var(--primary);
  transform: translateY(-4px);
}

.contact-link__icon {
  font-size: var(--headline-md);
  font-weight: 700;
  color: var(--primary);
}

.contact-link__label {
  font-size: var(--label-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ------------------------------------------------------------
   10. DETAIL VIEW — Split Layout (images left, info right)
   ------------------------------------------------------------ */
.section--detail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;             /* columns manage their own scroll */
  background: var(--surface);
  z-index: 150;                 /* above nav (z-index:100) */
  display: none;
  flex-direction: row;
}

.section--detail:not(.hidden) {
  display: flex;
}

/* ── Left column: scrollable images ── */
.detail-images-col {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--surface-lowest);
  padding: var(--space-6) var(--space-4) var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.detail-images-col::-webkit-scrollbar {
  display: none;
}

.detail-image-wrap {
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-low);
  flex-shrink: 0;
}

.detail-image-wrap img,
.detail-image-wrap video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 80vh;
}

/* ── Right column: sticky info panel ── */
.detail-info-col {
  width: 38%;
  min-width: 320px;
  max-width: 480px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--surface-low);
  border-left: 1px solid var(--outline-variant);
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-6) var(--space-8);
  gap: 0;
}

.detail-info-col::-webkit-scrollbar {
  display: none;
}

/* Exit button — top of right panel */
.detail-exit {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-family);
  font-size: var(--body-md);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.3s;
  margin-bottom: var(--space-8);
  letter-spacing: 0.02em;
}

.detail-exit:hover {
  color: var(--primary);
}

/* Archive number */
.detail-archive-num {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
  display: block;
}

/* Large title */
.detail-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}

/* Artist name */
.detail-artist {
  font-size: var(--body-md);
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--space-4);
}

/* Return to Gallery — prominent white pill */
.detail-return-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.65rem var(--space-4);
  font-family: var(--font-family);
  font-size: var(--body-md);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-6);
  align-self: flex-start;
}

.detail-return-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Divider */
.detail-divider {
  border: none;
  border-top: 1px solid var(--outline-variant);
  margin-bottom: var(--space-4);
}

/* Provenance & Specs section */
.detail-specs-label {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: var(--space-3);
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-2);
  margin-bottom: var(--space-6);
}

.detail-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-spec-item--full {
  grid-column: 1 / -1;
}

.spec-label {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-value {
  font-size: var(--body-md);
  color: var(--on-surface);
  font-weight: 500;
  line-height: 1.4;
}

/* Curator's Insight */
.detail-insight-label {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: var(--space-2);
}

.detail-insight-text {
  font-size: var(--body-md);
  color: var(--on-surface);
  line-height: 1.8;
  opacity: 0.85;
}


/* ------------------------------------------------------------
   11. BUTTONS
   ------------------------------------------------------------ */
.btn {
  font-family: var(--font-family);
  font-size: var(--body-md);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}

.btn--ghost {
  background: none;
  border: 1px solid rgba(71, 71, 71, 0.15);
  color: var(--primary);
}

.btn--ghost:hover {
  background: var(--surface-high);
  transform: translateY(-2px);
}


/* ------------------------------------------------------------
   12. SECTION INDICATORS (optional dot nav)
   ------------------------------------------------------------ */
.section-indicators {
  position: fixed;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: center;
}

.section-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--muted);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.section-dot.active {
  background: var(--primary);
  opacity: 1;
  height: 18px;
  border-radius: 3px;
}

.section-dot:hover {
  opacity: 0.8;
}


/* ------------------------------------------------------------
   13. UTILITY CLASSES
   ------------------------------------------------------------ */
.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;
}

.text-muted {
  color: var(--muted);
}

.text-primary {
  color: var(--primary);
}


/* ------------------------------------------------------------
   13b. EMAIL POPUP
   ------------------------------------------------------------ */
.email-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.email-popup[hidden] {
  display: none;
}

.email-popup__content {
  background: var(--surface-high);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  min-width: 320px;
}

.email-popup__address {
  font-size: var(--headline-md);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-3);
  user-select: all;
}

.email-popup__copy {
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.5rem var(--space-3);
  font-family: var(--font-family);
  font-size: var(--body-md);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.email-popup__copy:hover {
  opacity: 0.85;
}

.email-popup__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}


/* ------------------------------------------------------------
   13c. DETAIL MOBILE HEADER
   ------------------------------------------------------------ */
.detail-mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .detail-mobile-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-2) 0;
    margin-bottom: var(--space-2);
    flex-shrink: 0;
  }
}

.detail-mobile-header__back {
  background: none;
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.detail-mobile-header__back:hover {
  background: var(--surface-high);
  border-color: var(--on-surface);
}

.detail-mobile-header__title {
  font-size: var(--body-md);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}


/* ------------------------------------------------------------
   13d. DETAIL MOBILE FOOTER
   ------------------------------------------------------------ */
.detail-mobile-footer {
  display: none;
}

@media (max-width: 768px) {
  .detail-mobile-footer {
    display: flex;
    flex-direction: column;
    background: var(--surface-low);
    border-top: 1px solid var(--outline-variant);
    padding: var(--space-4) var(--space-3) var(--space-8);
    gap: 0;
    z-index: 160;
  }
}

.detail-mobile-footer__exit {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-family);
  font-size: var(--body-md);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.3s;
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.detail-mobile-footer__exit:hover {
  color: var(--primary);
}

.detail-mobile-footer__archive {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
  display: block;
}

.detail-mobile-footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-1) 0;
}

.detail-mobile-footer__artist {
  font-size: var(--body-md);
  color: var(--muted);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.detail-mobile-footer__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-2);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--outline-variant);
}

.detail-mobile-footer__spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-mobile-footer__spec--full {
  grid-column: 1 / -1;
}

.detail-mobile-footer__insight {
  padding-top: var(--space-4);
  border-top: 1px solid var(--outline-variant);
  margin-bottom: var(--space-4);
}

.detail-mobile-footer__insight-label {
  font-size: var(--label-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: var(--space-2);
}

.detail-mobile-footer__insight-text {
  font-size: var(--body-md);
  color: var(--on-surface);
  line-height: 1.8;
  opacity: 0.85;
}

.detail-mobile-footer__btn {
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem var(--space-4);
  font-family: var(--font-family);
  font-size: var(--body-md);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}

.detail-mobile-footer__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}


/* ------------------------------------------------------------
   14. RESPONSIVE — MOBILE (max-width: 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  /* Nav */
  #nav {
    padding: var(--space-2) var(--space-3);
  }

  .nav-link {
    margin-left: var(--space-2);
  }

  /* Wheel gallery */
  .wheel,
  .wheel-card {
    width: 280px;
    height: 210px;
  }

  /* Project info — hide on mobile */
  .project-info {
    display: none;
  }

  /* About */
  .section--about {
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: var(--space-8);
  }

  .about-container {
    grid-template-columns: 1fr;
    padding: 0 var(--space-3);
    gap: var(--space-4);
  }

  .about-image__placeholder {
    aspect-ratio: 4 / 3;
  }

  .about-image__photo {
    aspect-ratio: 4 / 3;
  }

  .about-content__name {
    font-size: 2.5rem;
  }

  /* Detail — mobile: stack vertically, normal flow */
  .section--detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    overflow-y: visible;
    overflow-x: hidden;
    padding-top: 0;
  }

  .section--detail:not(.hidden) {
    display: flex;
  }

  .detail-images-col {
    height: auto;
    overflow-y: visible;
    flex: none;
    padding: 0 var(--space-3);
    min-height: auto;
  }

  .detail-info-col {
    display: none !important;
  }

  .detail-title {
    font-size: 1.5rem;
  }

  .detail-exit {
    margin-bottom: var(--space-4);
  }

  .detail-specs-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  /* Section indicators */
  .section-indicators {
    right: var(--space-1);
  }
}


/* ------------------------------------------------------------
   15. RESPONSIVE — TABLET (max-width: 1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 var(--space-6);
  }

  .project-info {
    right: var(--space-4);
    max-width: 220px;
  }

  .project-info__title {
    font-size: 1.25rem;
  }
}


/* ------------------------------------------------------------
   16. REDUCED MOTION
   ------------------------------------------------------------ */
@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;
  }
}
