﻿:root {
  color-scheme: dark;
  --bg: #16171a;
  --bg-raised: #1d1e22;
  --card: #202124;
  --card-hover: #26272b;
  --text: #e8eaed;
  --text-dim: #9aa0a6;
  --accent: #8ab4f8;
  --accent-strong: #5b8def;
  --on-accent: #14161a;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #4f46e5, #3b82f6, #22d3ee);
  --shadow-rgb: 59, 130, 246;
  --radius: 14px;
  --max: 1120px;
}

/* Site-wide theme palettes — the same 8 themes the extension ships with */

:root[data-site-theme='light'] {
  color-scheme: light;
  --bg: #ffffff;
  --bg-raised: #fafafa;
  --card: #f1f3f4;
  --card-hover: #e4e6e8;
  --text: #202124;
  --text-dim: #5f6368;
  --accent: #1a73e8;
  --accent-strong: #174ea6;
  --on-accent: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #1a73e8, #4285f4, #22d3ee);
  --shadow-rgb: 26, 115, 232;
}

:root[data-site-theme='midnight'] {
  color-scheme: dark;
  --bg: #100b3d;
  --bg-raised: #150f4a;
  --card: #150f4a;
  --card-hover: #1f1876;
  --text: #f2f1ff;
  --text-dim: #a9a3e0;
  --accent: #5b8def;
  --accent-strong: #3730a3;
  --on-accent: #14103f;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #3730a3, #5b8def, #22d3ee);
  --shadow-rgb: 91, 141, 239;
}

:root[data-site-theme='ocean'] {
  color-scheme: dark;
  --bg: #0b1a20;
  --bg-raised: #0f2027;
  --card: #0f2027;
  --card-hover: #1c3a45;
  --text: #e6fbff;
  --text-dim: #8fbfc9;
  --accent: #22d3ee;
  --accent-strong: #0e7490;
  --on-accent: #062024;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #0f2027, #0e7490, #22d3ee);
  --shadow-rgb: 34, 211, 238;
}

:root[data-site-theme='sunset'] {
  color-scheme: dark;
  --bg: #22101a;
  --bg-raised: #2b1420;
  --card: #2b1420;
  --card-hover: #3d1f2f;
  --text: #ffece6;
  --text-dim: #d9a9a3;
  --accent: #fb7185;
  --accent-strong: #9f1239;
  --on-accent: #2b1420;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #9f1239, #fb7185, #fda4af);
  --shadow-rgb: 251, 113, 133;
}

:root[data-site-theme='forest'] {
  color-scheme: dark;
  --bg: #0b1710;
  --bg-raised: #0f1f14;
  --card: #0f1f14;
  --card-hover: #16301f;
  --text: #e8f5ea;
  --text-dim: #9dc2a8;
  --accent: #4ade80;
  --accent-strong: #14532d;
  --on-accent: #0f1f14;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #14532d, #22c55e, #86efac);
  --shadow-rgb: 34, 197, 94;
}

:root[data-site-theme='grape'] {
  color-scheme: dark;
  --bg: #180d29;
  --bg-raised: #1e1033;
  --card: #1e1033;
  --card-hover: #2c1a4d;
  --text: #f1e9ff;
  --text-dim: #c1a8e8;
  --accent: #a78bfa;
  --accent-strong: #4c1d95;
  --on-accent: #1e1033;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #4c1d95, #8b5cf6, #c4b5fd);
  --shadow-rgb: 139, 92, 246;
}

:root[data-site-theme='sepia'] {
  color-scheme: light;
  --bg: #f5ecdf;
  --bg-raised: #eaddc7;
  --card: #eaddc7;
  --card-hover: #ded0b3;
  --text: #3b2c1a;
  --text-dim: #7a6650;
  --accent: #b45309;
  --accent-strong: #78350f;
  --on-accent: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #78350f, #b45309, #f59e0b);
  --shadow-rgb: 180, 83, 9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#features,
#themes,
#reviews,
#install {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
  line-height: 1.5;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

code {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.9em;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(var(--shadow-rgb), 0.35);
  animation: gradient-shift 7s ease infinite;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 22px rgba(var(--shadow-rgb), 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-small {
  padding: 9px 16px;
  font-size: 13px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand-logo { height: 31px; width: auto; transition: opacity 0.15s ease, filter 0.35s ease; }

.brand:hover .brand-logo { opacity: 0.85; }

:root[data-site-theme='light'] .brand-logo,
:root[data-site-theme='sepia'] .brand-logo,
:root[data-site-theme='light'] .footer-logo,
:root[data-site-theme='sepia'] .footer-logo {
  filter: brightness(0) opacity(55%);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transition: right 0.2s ease;
}

.site-nav a:hover { color: var(--text); }

.site-nav a:hover::after { right: 0; }

/* Status banner */

.status-banner {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}

.status-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--text-dim);
}

.status-banner-inner p { margin: 0; }

.status-banner-inner strong { color: var(--text); }

.status-banner-inner a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.status-banner-inner a:hover { text-decoration: underline; }

.status-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Hero */

.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy > * {
  animation: rise-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.35s; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0.8;
  margin: 0;
}

/* Hero visual: fake popup */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mock-popup {
  width: 320px;
  background: #202124;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  animation: rise-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s both, float 5s ease-in-out 0.9s infinite;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-logo-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
}

.mock-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-icon-btn {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a6;
}

.mock-addslot {
  font-size: 11px;
  font-weight: 600;
  color: #8ab4f8;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
  padding: 18px 16px 22px;
}

.mock-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: tile-in 0.5s ease both;
}

.mock-slot:nth-child(1) { animation-delay: 0.35s; }
.mock-slot:nth-child(2) { animation-delay: 0.41s; }
.mock-slot:nth-child(3) { animation-delay: 0.47s; }
.mock-slot:nth-child(4) { animation-delay: 0.53s; }
.mock-slot:nth-child(5) { animation-delay: 0.59s; }
.mock-slot:nth-child(6) { animation-delay: 0.65s; }
.mock-slot:nth-child(7) { animation-delay: 0.71s; }
.mock-slot:nth-child(8) { animation-delay: 0.77s; }

.mock-slot:hover .mock-tile { transform: scale(1.08); }

.mock-tile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.mock-favicon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.mock-tile.mock-folder {
  position: relative;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 8px;
}

.mock-tile.mock-folder .mini {
  border-radius: 3px;
  opacity: 0.85;
}

.mock-folder-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent-strong, #5b8def);
  border: 2px solid #202124;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-tile-empty {
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
}

.mock-label {
  font-size: 10px;
  color: #9aa0a6;
}

/* Problem / Solution */

.problem-solution {
  padding: 40px 0 96px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.ps-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.ps-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.ps-tag-problem {
  color: #ff8a80;
  background: rgba(255, 138, 128, 0.12);
}

.ps-tag-solution {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}

.ps-card h2 {
  font-size: 21px;
  margin: 0 0 18px;
  line-height: 1.3;
}

.ps-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
  font-size: 14.5px;
}

.ps-card li { margin-bottom: 10px; }
.ps-card li:last-child { margin-bottom: 0; }

.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-dim);
}

/* Section titles */

.section-title {
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 48px;
  font-size: 15.5px;
}

/* Features */

.features { padding: 96px 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.feature-card:hover {
  background: var(--card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(138, 180, 248, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1.4);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
}

.icon-folder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 18px;
  height: 18px;
}

.icon-folder span {
  border-radius: 3px;
  background: var(--accent);
}

.icon-theme {
  display: flex;
  gap: 4px;
  background: transparent;
  padding: 0;
}

.icon-theme .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
}

/* Themes */

.themes { padding: 0 0 96px; }

.theme-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.theme-hint {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-dim);
  margin: 20px 0 0;
}

.theme-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 4px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.35s ease;
}

.theme-swatch {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1.4), box-shadow 0.2s ease;
}

.theme-chip:hover .theme-swatch {
  transform: scale(1.15) rotate(10deg);
}

.theme-chip[aria-pressed='true'] {
  color: var(--text);
}

.theme-chip[aria-pressed='true'] .theme-swatch {
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent);
}

.theme-chip[aria-pressed='true'] .theme-swatch::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* How it works */

.how { padding: 0 0 96px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
}

.step p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.step p a:hover { text-decoration: underline; }

.how-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0.8;
  margin: 40px 0 0;
}

/* Reviews */

.reviews { padding: 0 0 96px; }

.review-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
  overflow: hidden;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.review-quote-mark {
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 4px;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 18px;
}

.review-text {
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--border);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.review-name {
  font-size: 14.5px;
  font-weight: 600;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.review-source:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* CTA banner */

.cta-banner {
  padding: 64px 0 96px;
}

.cta-banner-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.cta-banner-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0;
  max-width: 20ch;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo { height: 26px; width: auto; opacity: 0.8; transition: filter 0.35s ease; }

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links a { text-decoration: none; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--text); }

.footer-note {
  font-size: 12.5px;
  color: var(--text-dim);
  opacity: 0.7;
  margin: 0;
}

.footer-note a { text-decoration: underline; }

/* Responsive */

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .site-nav { display: none; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .mock-popup { width: 100%; max-width: 320px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .status-banner-inner { align-items: flex-start; }
  .status-dot { margin-top: 5px; }
  .review-card { padding: 32px 24px; }
  .review-text { font-size: 17px; }
}

/* Motion */

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tile-in {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 70ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }
.reveal:nth-child(4) { transition-delay: 210ms; }
.reveal:nth-child(5) { transition-delay: 280ms; }
.reveal:nth-child(6) { transition-delay: 350ms; }
.reveal:nth-child(7) { transition-delay: 420ms; }
.reveal:nth-child(8) { transition-delay: 490ms; }

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