/* ===================================
   DESIGN SYSTEM - TOKENS
   =================================== */

:root {
  /* Colors */
  --navy: #0B1F3A;
  --navy-light: #132D50;
  --navy-mid: #1A3A66;
  --orange: #FF7A00;
  --orange-hover: #E56D00;
  --orange-glow: rgba(255, 122, 0, 0.15);
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;

  /* Category Colors */
  --cat-tech: #3B82F6;
  --cat-tech-bg: rgba(59, 130, 246, 0.1);
  --cat-economics: #10B981;
  --cat-economics-bg: rgba(16, 185, 129, 0.1);
  --cat-fiction: #8B5CF6;
  --cat-fiction-bg: rgba(139, 92, 246, 0.1);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 31, 58, 0.08), 0 2px 4px -2px rgba(11, 31, 58, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(11, 31, 58, 0.08), 0 4px 6px -4px rgba(11, 31, 58, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(11, 31, 58, 0.1), 0 8px 10px -6px rgba(11, 31, 58, 0.05);
  --shadow-card-hover: 0 25px 50px -12px rgba(11, 31, 58, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --max-width: 1240px;
  --header-height: 72px;
}

/* ===================================
   RESET & BASE
   =================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 80px);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ===================================
   LAYOUT UTILITIES
   =================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

/* ===================================
   HEADER
   =================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: var(--navy);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.header-logo span {
  color: var(--orange);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.header-nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--gray-300);
  transition: color var(--transition-fast);
  position: relative;
}

.header-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition-base);
}

.header-nav-links a:hover {
  color: var(--white);
}

.header-nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--white);
  background-color: var(--orange);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-cta:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO
   =================================== */

.hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Geometric pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  background-color: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--gray-400);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================
   FILTER BAR (Tabs + Search)
   =================================== */

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 900;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition-base);
}

.filter-bar.stuck {
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.06);
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
}

.category-tabs {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  flex-shrink: 0;
}

.category-tab {
  padding: var(--space-2) var(--space-5);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--gray-600);
  background-color: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.category-tab:hover {
  color: var(--navy);
  border-color: var(--gray-400);
  background-color: var(--gray-50);
}

.category-tab.active {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}

.search-wrapper {
  position: relative;
  flex: 0 1 320px;
  min-width: 200px;
}

.search-icon {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.search-input {
  width: 100%;
  padding: var(--space-2) var(--space-10) var(--space-2) calc(var(--space-3) + 26px);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
  background-color: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background-color: var(--white);
}

.search-input:focus + .search-icon {
  color: var(--orange);
}

.search-clear {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: var(--gray-400);
  background-color: var(--gray-200);
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.search-input:not(:placeholder-shown) ~ .search-clear {
  opacity: 1;
  pointer-events: auto;
}

.search-clear:hover {
  background-color: var(--gray-300);
  color: var(--gray-600);
}

/* ===================================
   RESULTS INFO BAR
   =================================== */

.results-bar {
  padding: var(--space-4) 0 0;
}

.results-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-count {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  font-weight: 500;
}

.results-count strong {
  color: var(--navy);
  font-weight: 600;
}

/* ===================================
   BOOK GRID
   =================================== */

.books-section {
  padding: var(--space-4) 0 var(--space-20);
  background-color: var(--gray-50);
  min-height: 400px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-6);
}

.book-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  animation: fadeInUp 0.4s ease-out both;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-300);
}

.book-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--gray-100);
  overflow: hidden;
}

.book-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.book-card:hover .book-card-image img {
  transform: scale(1.03);
}

.book-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  text-transform: capitalize;
  margin-bottom: var(--space-2);
}

.book-card-badge[data-category="tech"] {
  color: var(--cat-tech);
  background-color: var(--cat-tech-bg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.book-card-badge[data-category="economics"] {
  color: var(--cat-economics);
  background-color: var(--cat-economics-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.book-card-badge[data-category="fiction"] {
  color: var(--cat-fiction);
  background-color: var(--cat-fiction-bg);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.book-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-5);
}

.book-card-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-card-description {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.book-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--white);
  background-color: var(--orange);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.book-card-cta:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.book-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.book-card-cta:hover svg {
  transform: translateX(2px);
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-20) var(--space-8);
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  color: var(--gray-300);
}

.empty-state h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.empty-state p {
  font-size: var(--font-size-base);
  color: var(--gray-500);
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
  background-color: var(--navy);
  color: var(--gray-400);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer-brand h3 span {
  color: var(--orange);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  max-width: 360px;
}

.footer-column h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--gray-400);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--gray-400);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Stagger delays for grid items */
.book-card:nth-child(1) { animation-delay: 0.02s; }
.book-card:nth-child(2) { animation-delay: 0.06s; }
.book-card:nth-child(3) { animation-delay: 0.10s; }
.book-card:nth-child(4) { animation-delay: 0.14s; }
.book-card:nth-child(5) { animation-delay: 0.18s; }
.book-card:nth-child(6) { animation-delay: 0.22s; }
.book-card:nth-child(7) { animation-delay: 0.26s; }
.book-card:nth-child(8) { animation-delay: 0.30s; }
.book-card:nth-child(9) { animation-delay: 0.34s; }
.book-card:nth-child(10) { animation-delay: 0.38s; }
.book-card:nth-child(11) { animation-delay: 0.42s; }
.book-card:nth-child(12) { animation-delay: 0.46s; }
.book-card:nth-child(n+13) { animation-delay: 0.50s; }

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1199px) {
  .book-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  :root {
    --header-height: 64px;
  }

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

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-stats {
    gap: var(--space-8);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .filter-bar-inner {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .category-tabs {
    order: 2;
    width: 100%;
    overflow-x: auto;
    padding-bottom: var(--space-1);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .search-wrapper {
    order: 1;
    flex: 1 1 100%;
    min-width: unset;
  }
}

@media (max-width: 599px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hero {
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  }

  .hero h1 {
    font-size: var(--font-size-3xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .hero-stat-value {
    font-size: var(--font-size-2xl);
  }

  .header-nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav.open .header-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--navy);
    padding: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.3);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .book-card-image {
    aspect-ratio: 4 / 5;
  }
}

/* ===================================
   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;
  }
}
