/* ==========================================================================
   CozyFernHaven — shared styles
   Dark + gold premium casino theme with a warm cozy-forest accent.
   Mobile-first, base breakpoint 375px.
   ========================================================================== */

:root {
  --bg: #0e0e14;
  --surface: #181826;
  --surface-2: #20212f;
  --gold: #f5c518;
  --gold-2: #ffd75e;
  --fern: #2fa66e;
  --fern-2: #6fd9a8;
  --glow: #7a3cff;
  --text: #ededf2;
  --muted: #9a9ab0;
  --danger: #ff5c5c;
  --ok: #3cd68a;
  --border: rgba(245, 197, 24, 0.16);

  --container: 1140px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);

  --font-display: 'Poppins', 'Segoe UI', Roboto, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ----- Reset & base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #15151f 0%, var(--bg) 55%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }

p { margin: 0 0 1em; }

ul { margin: 0; padding-left: 1.2em; }

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

section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1306;
  padding: 0.6em 1em;
  border-radius: var(--radius-sm);
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  line-height: 1.1;
}

.btn:hover:not(:disabled),
.btn:focus-visible:not(:disabled) {
  transform: translateY(-2px);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #241a02;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.28);
}

.btn-primary:hover:not(:disabled),
.btn-primary:focus-visible:not(:disabled) {
  box-shadow: 0 12px 30px rgba(245, 197, 24, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover:not(:disabled),
.btn-secondary:focus-visible:not(:disabled) {
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--border);
  padding: 0.6em 1.2em;
  font-size: 0.92rem;
}

.btn-block { width: 100%; }

/* ----- Badges & disclaimers ----- */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #1a1306;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: var(--radius-sm);
  padding: 0.25em 0.55em;
  line-height: 1;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(47, 166, 110, 0.08);
  border: 1px solid rgba(47, 166, 110, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.85em 1.1em;
}

.disclaimer strong {
  color: var(--fern-2);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 14, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.logo:hover,
.logo:focus-visible {
  text-decoration: none;
  color: var(--gold-2);
}

.logo svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

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

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 0 8px;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.site-nav.is-open {
  max-height: 480px;
}

.site-nav a,
.site-nav .badge-18 {
  margin: 0.3rem 1.1rem;
}

.site-nav a {
  display: block;
  padding: 0.7em 0;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--gold-2);
  text-decoration: none;
}

.site-nav .nav-cta {
  margin: 0.8rem 1.1rem 1.1rem;
}

.balance-pill {
  display: none;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4em 0.9em;
  color: var(--gold-2);
  white-space: nowrap;
}

.balance-pill.is-visible {
  display: inline-flex;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
  }

  .site-nav a,
  .site-nav .badge-18,
  .site-nav .nav-cta {
    margin: 0;
  }

  .site-nav a {
    border-bottom: none;
    padding: 0.5em 0.9em;
  }

  .site-nav .badge-18 {
    margin-left: 0.3em;
  }

  .site-nav .nav-cta {
    margin-left: 0.6em;
  }
}

/* ----- Hero ----- */
.hero {
  padding-top: clamp(2.5rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(122, 60, 255, 0.25), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy .badge-18 {
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.4rem 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.reel-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 60px rgba(122, 60, 255, 0.18);
  padding: 1.4rem;
  width: min(360px, 100%);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.reel-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.reel-card .btn {
  width: 100%;
}

@media (min-width: 920px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ----- Generic section heading ----- */
.section-head {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fern-2);
  margin-bottom: 0.6em;
}

/* ----- Steps (How it works) ----- */
.steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #241a02;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.8em;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- Cards / feature grid ----- */
.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 920px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card h3 {
  color: var(--gold-2);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  content: "🌿";
  flex-shrink: 0;
}

/* ----- Game preview panel ----- */
.game-promo {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

@media (min-width: 880px) {
  .game-promo {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----- FAQ accordion ----- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1em 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.faq-question::after {
  content: "+";
  font-size: 1.3em;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.2em 1.1em;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #0a0a10;
  padding: clamp(2rem, 5vw, 3rem) 0 1.6rem;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.6rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-links h4 {
  color: var(--gold-2);
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom .badge-18 {
  margin-right: 0.5em;
}

/* ----- Modal (age gate) ----- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 10, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 200;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 440px;
  width: 100%;
  padding: 1.8rem;
  text-align: center;
}

.modal .badge-18 {
  font-size: 1.1rem;
  padding: 0.4em 0.9em;
  margin-bottom: 0.9rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

@media (min-width: 480px) {
  .modal-actions {
    flex-direction: row;
  }

  .modal-actions .btn {
    flex: 1;
  }
}

/* ----- Cookie consent banner ----- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 150;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 640px;
  margin: 0 auto;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

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

@media (min-width: 620px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ----- Forms ----- */
.form-field {
  display: grid;
  gap: 0.4em;
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.75em 0.9em;
  font: inherit;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-error {
  color: var(--danger);
  font-size: 0.82rem;
  min-height: 1.2em;
}

.form-status {
  border-radius: var(--radius-sm);
  padding: 0.9em 1.1em;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.form-status.is-success {
  background: rgba(60, 214, 138, 0.12);
  border: 1px solid rgba(60, 214, 138, 0.35);
  color: var(--ok);
}

.form-status.is-error {
  background: rgba(255, 92, 92, 0.12);
  border: 1px solid rgba(255, 92, 92, 0.35);
  color: var(--danger);
}

.form-status[hidden] {
  display: none;
}

/* ----- Generic content page layout ----- */
.page-hero {
  padding: clamp(2rem, 5vw, 3.2rem) 0 0.5rem;
  text-align: center;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.prose h2 {
  color: var(--gold-2);
  margin-top: 1.6em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
  margin: 0.6em 0 1.2em;
}

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

.resource-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.resource-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1em 1.2em;
  color: var(--muted);
}

.resource-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  margin-bottom: 0.2em;
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mb-lg { margin-bottom: 2.4rem; }
.muted { color: var(--muted); }

.reel-grid--compact {
  max-width: 280px;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ----- Slot game (/game/) ----- */
.game-layout {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .game-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.slot-machine {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 70px rgba(47, 166, 110, 0.12);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.reels-grid .reel-cell {
  aspect-ratio: 1;
  font-size: clamp(2rem, 8vw, 2.8rem);
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reel-cell.is-spinning {
  animation: reel-blur 0.18s linear infinite;
}

.reel-cell.is-settled {
  transform: scale(1.08);
}

.reel-cell.is-win-cell {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.35), 0 0 24px rgba(245, 197, 24, 0.35);
  animation: win-pulse 1s ease-in-out infinite;
}

@keyframes reel-blur {
  0% { filter: blur(0); opacity: 1; }
  50% { filter: blur(1.5px); opacity: 0.75; }
  100% { filter: blur(0); opacity: 1; }
}

@keyframes win-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.slot-message {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--muted);
  min-height: 1.6em;
  margin-bottom: 1.2rem;
}

.slot-message.is-win {
  color: var(--gold-2);
}

.slot-message.is-info {
  color: var(--fern-2);
}

.slot-controls {
  display: grid;
  gap: 0.9rem;
}

.slot-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.bet-field {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.bet-field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.bet-field select {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55em 0.8em;
  font: inherit;
  font-weight: 600;
}

.balance-readout {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.balance-readout span {
  color: var(--gold-2);
}

.bonus-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7em;
}

#daily-bonus-status {
  font-size: 0.85rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ----- Paytable & lines legend ----- */
.paytable-grid {
  display: grid;
  gap: 0.5rem;
}

.paytable-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6em 0.9em;
}

.paytable-row .symbol {
  font-size: 1.4rem;
  margin-right: 0.6em;
}

.paytable-row .name {
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
}

.paytable-row .mult {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-2);
  font-size: 0.92rem;
}

.lines-legend {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.lines-legend li::before {
  content: "▸";
  color: var(--fern-2);
  margin-right: 0.5em;
}

/* ----- Spin history ----- */
.history-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-height: 360px;
  overflow-y: auto;
}

.history-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8em;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6em 0.9em;
  font-size: 0.85rem;
}

.history-time {
  color: var(--muted);
  white-space: nowrap;
}

.history-detail {
  color: var(--text);
}

.history-amount {
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}

.history-amount.is-positive { color: var(--ok); }
.history-amount.is-negative { color: var(--danger); }

.history-empty {
  text-align: center;
  padding: 1.4em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
