/* 
==========================================================================
   THE BORDERLAND CHRONICLE - DESIGN SYSTEM
   Brand: xenonvaultrank
   Game: Banditos Slot
========================================================================== 
*/

:root {
  /* Primary Backgrounds */
  --c-bone-paper: #F2E8D5;
  --c-sun-baked-sand: #D8C09B;
  --c-deep-saddle: #241A17;
  --c-night-adobe: #31221D;
  --c-weathered-surface: #49342A;

  /* Accents */
  --c-cinnabar-red: #B94732;
  --c-burnished-copper: #C77A3B;
  --c-desert-sage: #7D8A68;
  --c-dusk-blue: #536979;
  --c-pale-cream: #FFF6E5;

  /* Text Colors */
  --t-primary-dark: #241A17;
  --t-secondary-dark: #5C4B42;
  --t-primary-light: #FFF6E5;
  --t-muted-light: #CDBDAA;

  /* Typography */
  --font-editorial: 'Playfair Display', 'Merriweather', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  
  /* Layout */
  --max-width: 1440px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Transitions */
  --trans-cinematic: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-fast: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bone-paper);
  color: var(--t-primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-editorial);
  font-weight: 700;
  line-height: 1.1;
  color: var(--t-primary-dark);
}

.t-light { color: var(--t-primary-light); }
.t-accent { color: var(--c-cinnabar-red); }

.micro-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
}

.headline-hero {
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.headline-section {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--t-secondary-dark);
}

.t-light p {
  color: var(--t-muted-light);
}

a {
  color: var(--c-cinnabar-red);
  text-decoration: none;
  transition: var(--trans-fast);
}

a:hover {
  color: var(--c-burnished-copper);
}

/* Compliance Telegraph Bar */
.telegraph-bar {
  background-color: var(--c-deep-saddle);
  color: var(--t-primary-light);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 100;
}

.telegraph-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--c-cinnabar-red);
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
}

/* Split Frontier Header */
.site-header {
  position: absolute;
  top: 36px; /* Below telegraph */
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  transition: var(--trans-cinematic);
  border-bottom: 1px solid rgba(255, 246, 229, 0.2);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--c-bone-paper);
  border-bottom: 1px solid var(--c-sun-baked-sand);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(36, 26, 23, 0.05);
}

.header-left {
  display: flex;
  flex-direction: column;
}

.brand-name {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name img {
  height: 48px;
  width: auto;
  transition: var(--trans-fast);
}

.brand-name:hover img {
  transform: scale(1.05);
}

.journal-line {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-muted-light);
}

.site-header.scrolled .journal-line { color: var(--t-secondary-dark); }

.header-center {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.route-line {
  height: 1px;
  background-color: rgba(255, 246, 229, 0.3);
  width: 100%;
  max-width: 300px;
  position: relative;
}

.site-header.scrolled .route-line { background-color: var(--c-sun-baked-sand); }

.route-marker {
  width: 6px;
  height: 6px;
  background-color: var(--c-burnished-copper);
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: 50%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--t-primary-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.site-header.scrolled .nav-links a { color: var(--t-primary-dark); }
.site-header.scrolled .nav-links a:hover { color: var(--c-cinnabar-red); }

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--t-primary-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-header.scrolled .mobile-menu-trigger { color: var(--t-primary-dark); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-cinnabar-red);
  color: var(--t-primary-light);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--trans-fast);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #9A3926;
  color: var(--t-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 26, 23, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--t-primary-light);
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--t-primary-light);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--trans-fast);
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: var(--t-primary-light);
  color: var(--t-primary-dark);
}

.btn-dark {
  border-color: var(--t-primary-dark);
  color: var(--t-primary-dark);
}

.btn-dark:hover {
  background-color: var(--t-primary-dark);
  color: var(--t-primary-light);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg) 4rem;
  overflow: hidden;
  background-color: var(--c-deep-saddle);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: subtleScale 20s infinite alternate linear;
}

@keyframes subtleScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(20, 12, 10, 0.95) 0%, rgba(36, 26, 23, 0.6) 45%, rgba(36, 26, 23, 0) 100%),
              linear-gradient(0deg, rgba(20, 12, 10, 0.95) 0%, rgba(199, 122, 59, 0.3) 50%, rgba(36, 26, 23, 0) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--t-primary-light);
  padding-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-content .micro-label { 
  color: #FFC58F;
  margin-bottom: 1rem; 
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-content .headline-hero {
  font-size: clamp(4rem, 8vw, 8.5rem);
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
}

.hero-content p.subtext { 
  font-size: 1.5rem; 
  color: #FFFFFF; 
  max-width: 650px; 
  margin-bottom: 3rem; 
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 1);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-compliance {
  font-size: 0.8rem;
  color: rgba(255, 246, 229, 0.6);
  border-top: 1px solid rgba(255, 246, 229, 0.2);
  padding-top: 1rem;
  display: inline-block;
}

/* Chapter Index Rail */
.chapter-rail {
  background-color: var(--c-bone-paper);
  border-bottom: 1px solid var(--c-sun-baked-sand);
  padding: 0 4rem;
}

.rail-container {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
}

.rail-item {
  flex: 1;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--c-sun-baked-sand);
  display: flex;
  flex-direction: column;
}

.rail-item:first-child { border-left: 1px solid var(--c-sun-baked-sand); }

.rail-num {
  font-family: var(--font-editorial);
  font-size: 2rem;
  color: var(--c-cinnabar-red);
  line-height: 1;
  margin-bottom: 1rem;
}

.rail-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-secondary-dark);
  margin-bottom: 0.25rem;
}

.rail-desc {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--t-primary-dark);
}

/* Game Section: Courtyard */
.section-courtyard {
  padding: var(--spacing-xl) 4rem;
  background-color: var(--c-bone-paper);
}

.courtyard-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.courtyard-editorial .chapter-num {
  font-family: var(--font-editorial);
  font-size: 4rem;
  color: var(--c-sun-baked-sand);
  line-height: 1;
  margin-bottom: 1rem;
}

.compliance-block {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: rgba(216, 192, 155, 0.2);
  border-left: 2px solid var(--c-cinnabar-red);
}

.compliance-block ul {
  list-style: none;
}

.compliance-block li {
  font-size: 0.875rem;
  color: var(--t-secondary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.compliance-block li::before {
  content: '•';
  color: var(--c-burnished-copper);
  margin-right: 8px;
}

.game-window {
  background-color: var(--c-deep-saddle);
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(36, 26, 23, 0.15);
  position: relative;
}

.game-window::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid var(--c-sun-baked-sand);
  border-radius: 6px;
  pointer-events: none;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
  border-radius: 2px;
  overflow: hidden;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

/* Story Trail */
.story-trail {
  background-color: var(--c-bone-paper);
  padding-bottom: var(--spacing-xl);
}

.trail-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.trail-chapter:not(:last-child) { margin-bottom: 8rem; }

.trail-chapter.ch-2 { direction: rtl; }
.trail-chapter.ch-2 > * { direction: ltr; }

.trail-img-wrap { padding: 0 4rem; }
.trail-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.trail-content {
  padding: 0 4rem;
  position: relative;
}

.trail-num {
  font-family: var(--font-editorial);
  font-size: 6rem;
  color: var(--c-sun-baked-sand);
  line-height: 0.8;
  position: absolute;
  top: -2rem;
  left: 1rem;
  z-index: 0;
  opacity: 0.5;
}

.trail-chapter.ch-2 .trail-num { left: auto; right: 1rem; }

.trail-content-inner {
  position: relative;
  z-index: 1;
}

.ch-3 {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 8rem 0;
}

.ch-3 img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.ch-3-caption {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  background-color: var(--c-bone-paper);
  padding: 2rem;
  max-width: 400px;
}

.ch-4 {
  background-color: var(--c-night-adobe);
  color: var(--t-primary-light);
  padding: var(--spacing-xl) 0;
  display: block;
}

.ch-4-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.ch-4 .trail-num {
  color: var(--c-weathered-surface);
  position: static;
  opacity: 1;
  margin-bottom: 1rem;
  display: block;
}

/* Cinematic Intermission */
.intermission {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.intermission img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intermission-caption {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  color: var(--t-primary-light);
  font-family: var(--font-editorial);
  font-size: 2rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Entertainment Code */
.entertainment-code {
  padding: var(--spacing-xl) 4rem;
  background-color: var(--c-bone-paper);
}

.code-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.code-header { text-align: center; margin-bottom: 4rem; }

.code-list {
  display: flex;
  flex-direction: column;
}

.code-item {
  display: flex;
  align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid var(--c-cinnabar-red);
}

.code-item:last-child { border-bottom: 1px solid var(--c-cinnabar-red); }

.code-number {
  font-family: var(--font-editorial);
  font-size: 3rem;
  color: var(--c-burnished-copper);
  width: 120px;
  flex-shrink: 0;
}

.code-text {
  font-size: 1.5rem;
  font-family: var(--font-editorial);
  color: var(--t-primary-dark);
}

/* Responsible Play Manifesto */
.manifesto {
  background-color: var(--c-deep-saddle);
  color: var(--t-primary-light);
  padding: var(--spacing-xl) 4rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.manifesto-left h2 { color: var(--t-primary-light); }

.manifesto-right ul {
  list-style: none;
  margin-bottom: 2rem;
}

.manifesto-right li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--t-muted-light);
}

.manifesto-right li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--c-desert-sage);
  border-radius: 50%;
}

/* Internal Page Headers */
.internal-hero {
  background-color: var(--c-deep-saddle);
  padding: 12rem 4rem 6rem;
  position: relative;
}

.internal-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.internal-content {
  padding: var(--spacing-lg) 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 4rem;
}

/* Forms */
.dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-secondary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  background-color: transparent;
  border: 1px solid var(--c-sun-baked-sand);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--t-primary-dark);
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-cinnabar-red);
}

/* Footer: The Final Ledger */
.site-footer {
  background-color: var(--c-deep-saddle);
  color: var(--t-muted-light);
  padding: var(--spacing-xl) 4rem 2rem;
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-route {
  height: 1px;
  background-color: var(--c-burnished-copper);
  width: 100%;
  margin: 4rem 0;
  opacity: 0.3;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 2.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-col-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-primary-light);
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer a,
footer a:visited {
  color: var(--t-muted-light);
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--c-burnished-copper);
}

.compliance-statements p {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  color: var(--c-cinnabar-red);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(205, 189, 170, 0.2);
  padding-top: 2rem;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c-night-adobe);
  color: var(--t-primary-light);
  padding: 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content { max-width: 800px; }
.cookie-content h4 { color: var(--t-primary-light); margin-bottom: 0.5rem; }
.cookie-content p { font-size: 0.875rem; margin-bottom: 0; color: var(--t-muted-light); }

.cookie-actions {
  display: flex;
  gap: 1rem;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100svh;
  background-color: var(--c-bone-paper);
  z-index: 1000;
  padding: 4rem 2rem;
  transition: var(--trans-cinematic);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(36,26,23,0.1);
}

.mobile-nav-drawer.open { right: 0; }

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--t-primary-dark);
  cursor: pointer;
  margin-bottom: 3rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drawer-links a {
  font-family: var(--font-editorial);
  font-size: 2rem;
  color: var(--t-primary-dark);
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .courtyard-grid, .trail-chapter { gap: 2rem; }
  .trail-img-wrap, .trail-content { padding: 0 2rem; }
}

@media (max-width: 1024px) {
  .headline-hero { font-size: 4rem; }
  .courtyard-grid { grid-template-columns: 42% 58%; }
  .manifesto-grid { gap: 2rem; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .compliance-statements { grid-column: 1 / -1; margin-top: 2rem; }
  
  .nav-links { display: none; }
  .mobile-menu-trigger { display: block; }
  .header-right .btn-secondary { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: var(--spacing-lg) 2rem; }
  
  .chapter-rail { padding: 0; }
  .rail-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem;
  }
  .rail-item {
    min-width: 80vw;
    scroll-snap-align: center;
    border: none;
    border-right: 1px solid var(--c-sun-baked-sand);
  }
  .rail-item:last-child { border-right: none; }

  .courtyard-grid, .trail-chapter { 
    grid-template-columns: 1fr; 
    text-align: center;
  }
  
  .section-courtyard, .story-trail, .entertainment-code, .manifesto {
    padding: var(--spacing-lg) 2rem;
  }
  
  .compliance-block { text-align: left; }
  
  .trail-chapter.ch-2 { direction: ltr; }
  .trail-img-wrap, .trail-content { padding: 0; margin-bottom: 2rem; }
  
  .ch-3 { margin: 4rem 0; }
  .ch-3-caption { bottom: 2rem; right: 2rem; left: 2rem; max-width: none; }
  
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-left { text-align: center; margin-bottom: 2rem; }
  
  .cookie-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions button { width: 100%; }
}

@media (max-width: 480px) {
  .headline-hero { font-size: 3rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; }
  
  .code-item { flex-direction: column; align-items: flex-start; }
  .code-number { margin-bottom: 1rem; }
  
  .footer-middle { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-brand img { height: 48px; }
  
  .internal-content { padding: var(--spacing-md) 1.5rem; }
}

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