

/* ---- Site styles (merged from index.html) ---- */
:root {
  --primary-color: #ffffff;
  --secondary-color: #a6a6a6;
  --accent-color: #f5f5f5;

  --bg-color: #0a0a0a;
  --card-bg: #121212;
  --text-color: #e6e6e6;
  --header-bg: rgba(10, 10, 10, 0.95);
  --border-color: #1f1f1f;
  --shadow-color: rgba(0, 0, 0, 0.6);

  --hero-grid-color: rgba(255,255,255,0.06);
  --hero-accent-tint: rgba(255,255,255,0.06);
}

:root[data-theme="light"] {
  --bg-color: #ffffff;
  --card-bg: #f7f7f7;
  --text-color: #111111;
  --header-bg: rgba(255, 255, 255, 0.95);
  --border-color: #e5e5e5;
  --shadow-color: rgba(0, 0, 0, 0.08);

  --primary-color: #111111;
  --secondary-color: #4d4d4d;
  --accent-color: #222222;

  /* Декор hero */
  --hero-grid-color: rgba(0,0,0,0.06);
  --hero-accent-tint: rgba(0,0,0,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  padding-top: 70px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Навигация */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links a.active {
  background: transparent;
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-bg);
  color: var(--text-color);
  box-shadow: 0 2px 5px var(--shadow-color);
}

.theme-toggle:hover {
  background-color: var(--primary-color);
  color: white;
}

.hero {
  position: relative;
  text-align: center;
  padding: 24px 0 2px;
  background: transparent;
  border-bottom: none;
  overflow: hidden;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0);
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.intro {
  text-align: center;
  padding: 18px 0;
  background-color: var(--bg-color);
}
.intro h2 {
  font-size: 1.3rem;
}

.bot-single {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.bot-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  width: 400px;
  box-shadow: 0 10px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
}

.bot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.bot-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.bot-card p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.bot-username {
  display: inline-block;
  background: rgba(41, 98, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 40px 0;
  opacity: 0.6;
}

.features {
  padding: 28px 0;
}

.features h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-item {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.about-section {
  padding: 40px 0;
  text-align: center;
}

.about-section h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--secondary-color);
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.links {
  padding: 28px 0;
}

.links h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.link-card:hover {
  transform: translateY(-5px);
}

.link-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.link-card p {
  line-height: 1.7;
  margin: 0 0 6px 0;
}

.link-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  background: transparent;
  text-decoration: none;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  padding: 4px 8px;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.link-card a:hover,
.link-card a:focus-visible {
  background: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.24), 0 0 10px rgba(41, 98, 255, 0.22);
  transform: translateY(-1px);
  border-color: var(--primary-color);
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 12px 25px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(41, 98, 255, 0.35);
  opacity: 0.98;
}

.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn:hover:after {
  left: 100%;
}

.btn.pricing-cta {
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: 8px;
}

/* FAQ */
.faq {
  padding: 40px 0;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.faq-layout {
  display: block;
}

.faq-content .accordion { max-width: 720px; margin: 0 auto; }

.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card-bg);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.accordion-header {
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
}

.accordion-content {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: none;
  padding: 0 16px 12px;
  overflow: visible;
}

.accordion-content::-webkit-scrollbar {
  width: 6px;
}
.accordion-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 6px;
}
.accordion-content::-webkit-scrollbar-track {
  background: transparent;
}

.pricing {
  padding: 40px 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

#pricing .hero {
  padding: 24px 0 2px;
}
#pricing .hero h1 {
  font-size: 2rem;
  letter-spacing: 0.2px;
}
#pricing .hero .subtitle {
  font-size: 1.05rem;
  margin-top: 6px;
  margin-bottom: 6px;
  opacity: 0.85;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  width: 350px;
  text-align: center;
  box-shadow: 0 10px 20px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured:before {
  content: 'ПОПУЛЯРНЫЙ';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  transform: rotate(45deg);
}

.pricing-card.featured .price {
  color: var(--accent-color);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
  color: var(--secondary-color);
}

.price-small {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
  margin-left: 10px;
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-features li:before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.savings-badge {
  background: var(--accent-color);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
}

.discount-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1.2;
  background: #2c66ff;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(41, 98, 255, 0.35);
  vertical-align: middle;
}

:root[data-theme="light"] .discount-badge {
  background: #0f3bd9;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(15, 59, 217, 0.25);
}

/* Таблица тарифов */
.pricing-table-wrapper {
  display: none !important;
}
.pricing-table {
  width: 100%;
  max-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background:
    linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px var(--shadow-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  isolation: isolate;
}
.pricing-table col:nth-child(1) { width: 40%; }
.pricing-table col:nth-child(2) { width: 35%; }
.pricing-table col:nth-child(3) { width: 25%; }
.pricing-table:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.pricing-table::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  background: radial-gradient(120px 120px at 100% 0%, rgba(41, 98, 255, 0.38), transparent 60%);
  filter: blur(14px);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate3d(0,0,0);
}
.pricing-table:hover::after {
  opacity: 0.9;
  transform: translate3d(-2px, 2px, 0);
}

.pricing-table::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg,
    rgba(41, 98, 255, 0.35),
    rgba(255, 255, 255, 0.08),
    rgba(41, 98, 255, 0.35)
  );
  background-size: 200% 200%;
  z-index: -1;
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pricing-table:hover::before {
  opacity: 0.35;
  animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-table thead tr {
  background: var(--hero-accent-tint);
}
.pricing-table thead th {
  letter-spacing: 0.2px;
}

.pricing-table tbody td:first-child {
  color: var(--text-color);
  opacity: 0.9;
}
.pricing-table tbody td:nth-child(2) {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1.1rem;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  line-height: 1.5;
  vertical-align: middle;
  text-align: center !important;
  border: none !important;
  background: none !important;
}
.pricing-table thead th {
  font-weight: 600;
  color: var(--secondary-color);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.pricing-table thead th:first-child,
.pricing-table tbody td:first-child {
  text-align: center;
}
.pricing-table thead th:nth-child(2),
.pricing-table tbody td:nth-child(2) {
  text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  padding-left: 18px;
}
.pricing-table th:last-child,
.pricing-table td:last-child {
  padding-right: 18px;
}

.discount-badge {
  vertical-align: baseline;
  margin-left: 10px;
}

.pricing-table thead th,
.pricing-table tbody td {
  position: static;
  background: none !important;
  background-image: none !important;
}
:root[data-theme="light"] .pricing-table thead th,
:root[data-theme="light"] .pricing-table tbody td {
  --_col: rgba(0,0,0,0.08);
}

.pricing-table thead th:not(:first-child),
.pricing-table tbody td:not(:first-child) {
  background-image: none !important;
}

.pricing-table tbody tr + tr td {
  background: none !important;
  background-image: none !important;
}

.pricing-table tbody tr:hover {
  background: transparent;
}
.pricing-table thead th,
.pricing-table tbody td,
.pricing-table thead th:not(:first-child),
.pricing-table tbody td:not(:first-child),
.pricing-table tbody tr + tr td,
.pricing-table tbody tr + tr td:first-child {
  background: none !important;
  background-image: none !important;
}

@media (max-width: 768px) {
  .plan-card {
    padding: 16px;
  }
  .plan-price {
    font-size: 1.15rem;
  }
}

.bot-commands {
  padding: 28px 0;
}

.bot-commands h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.command-category {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.command-category:hover {
  transform: translateY(-5px);
}

.command-category h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.command-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.command-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.command-name {
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.command-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

.glow {
  box-shadow: 0 0 20px rgba(41, 98, 255, 0.3);
  transition: box-shadow 0.3s ease;
}

.glow:hover {
  box-shadow: 0 0 30px rgba(41, 98, 255, 0.5);
}

.bot-card,
.feature-item,
.link-card,
.pricing-card,
.command-category,
.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--shadow-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bot-card:hover,
.feature-item:hover,
.link-card:hover,
.pricing-card:hover,
.command-category:hover,
.accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}
.bot-card h3,
.feature-item h3,
.link-card h3,
.pricing-card h3,
.command-category h3 {
  color: var(--primary-color);
  letter-spacing: 0.2px;
}

.features h2,
.links h2,
.pricing h2,
.bot-commands h2,
.about-section h2 {
  color: var(--secondary-color);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.features,
.links,
.pricing,
.bot-commands,
.about-section {
  padding-top: 28px;
  padding-bottom: 40px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 6px;
}
a.btn {
  text-decoration: none;
  border-bottom: none;
}

.feature-item,
.link-card,
.pricing-card,
.command-category {
  padding: 24px;
}

.pricing-table:focus-within {
  box-shadow: 0 8px 20px var(--shadow-color);
}

.pricing {
  padding-top: 12px;
}
.pricing-table-wrapper {
  margin-top: 0;
}

.pricing-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 560px;
  margin: 8px auto 0;
}
.plan-card {
  padding: 12px 16px 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: 0 5px 12px var(--shadow-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.plan-period {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 4px;
}
.plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px var(--shadow-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-btn {
    display: block;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .bot-card, .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:before {
    top: 10px;
    right: -35px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .nav-links a {
    padding: 10px;
    display: block;
    text-align: center;
  }

  .theme-toggle {
    margin: 10px auto;
  }

  .bot-card, .feature-item, .link-card, .pricing-card {
    padding: 20px;
  }

  .logo-container {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 20px 0 2px;
  }

  h1 {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .bot-card, .feature-item, .link-card, .pricing-card {
    padding: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .logo-container {
    gap: 8px;
  }

  .theme-toggle {
    width: 35px;
    height: 35px;
  }

  .pricing-table {
    max-width: 100%;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
  }
  .pricing-table thead th {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .pricing-table tbody td:nth-child(2) {
    font-size: 1rem;
    font-weight: 400;
  }
  .discount-badge {
    font-size: 0.8rem;
    padding: 2px 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
