@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Teko:wght@500;600;700&display=swap");

:root {
  --bg: #040404;
  --bg-soft: #0c0c0c;
  --panel: #111;
  --panel-soft: #191919;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: #2a2a2a;
  --accent: #14c95a;
  --accent-2: #f1c232;
  --danger: #ff6c4b;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

#hero,
#howItWorks,
#builder,
#tutorial {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at 15% -5%, rgba(20, 201, 90, 0.18), transparent 26%),
    radial-gradient(circle at 95% 0%, rgba(241, 194, 50, 0.16), transparent 30%),
    linear-gradient(180deg, #050505 0%, #080808 52%, #0a0a0a 100%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 30;
  pointer-events: none;
}

.scroll-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #5fff96 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.12s linear;
}

.pitch-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 201, 90, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 201, 90, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.45;
  mask-image: radial-gradient(circle at center, black 40%, transparent 96%);
}

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

code {
  font-family: "SFMono-Regular", ui-monospace, monospace;
}

.layout {
  width: min(var(--max), calc(100vw - 28px));
  margin: 14px auto 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 12px;
  z-index: 15;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-emoji {
  font-size: 1.5rem;
}

.brand-name {
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 46px;
  min-height: 34px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--accent);
  color: #041108;
}

.hero,
.diagram-section,
.how-it-works,
.builder,
.tutorial,
.footer {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.96));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 28px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  max-width: 12.5ch;
}

.hero p,
.section-head p,
.feed-status,
.small-note,
.footer p {
  color: var(--muted);
  line-height: 1.54;
}

.hero p {
  max-width: 70ch;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5fff96 100%);
  color: #041108;
}

.btn.btn-primary.is-disabled {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #9b9b9b;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: #1e1e1e;
  border-color: #343434;
  color: var(--text);
}

.hero-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  padding: 12px;
}

.hero-metrics span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-metrics strong {
  display: block;
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 0.95;
}

.feed-status {
  margin-top: 14px;
}

.hero-rail {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #121212;
  padding: 14px;
  align-self: start;
}

.rail-head,
.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rail-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.chip {
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid #2e2e2e;
  background: #181818;
  color: #9ae8ba;
  font-size: 0.8rem;
  font-weight: 700;
}

.next-games {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.game-card,
.preview-card,
.group-card,
.knockout-match,
.tutorial-card {
  border: 1px solid #2b2b2b;
  border-radius: var(--radius-md);
  background: #151515;
}

.game-card,
.preview-card {
  padding: 10px;
}

.game-top,
.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.team-line {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.team-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  width: 100%;
}

.team-label img {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #303030;
  object-fit: cover;
  background: #0f0f0f;
}

.team-label span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-line .team-label:last-of-type {
  justify-content: flex-end;
}

.team-line .team-label:last-of-type span {
  text-align: right;
}

.score-pill {
  min-width: 72px;
  text-align: center;
  border-radius: 999px;
  padding: 6px 8px;
  background: #1f1f1f;
  color: #caf9dc;
  border: 1px solid #2f2f2f;
  font-family: "Teko", sans-serif;
  font-size: 1.1rem;
}

.skeleton {
  height: 86px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 220% 100%;
  animation: shimmer 1.5s linear infinite;
}

.section-head {
  padding: 22px 24px 0;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.how-grid {
  margin: 14px 18px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.how-card {
  border: 1px solid #2b2b2b;
  border-radius: var(--radius-md);
  background: #151515;
  padding: 12px;
}

.how-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #2f5f43;
  background: rgba(20, 201, 90, 0.15);
  color: #c9f8db;
  font-weight: 800;
  font-size: 0.88rem;
}

.how-card h3 {
  margin: 10px 0 6px;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.how-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.how-result {
  margin: 10px 18px 18px;
  border: 1px solid #2f3f35;
  border-radius: 12px;
  background: rgba(20, 201, 90, 0.08);
  color: #dff9e9;
  padding: 10px 12px;
  font-weight: 600;
  line-height: 1.45;
}

.is-hidden {
  display: none !important;
}

.builder-tabs {
  margin: 16px 18px 0;
  display: inline-flex;
  gap: 8px;
}

.tab-button {
  border: 1px solid #343434;
  background: #171717;
  color: #d7d7d7;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.is-active {
  border-color: #3dd77a;
  background: rgba(20, 201, 90, 0.18);
  color: #dfffe9;
}

.group-stage-board,
.knockout-board {
  margin: 16px 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #101010;
  padding: 14px;
}

.group-stage-board h3,
.knockout-board h3,
.teams-panel h3,
.matches-panel h3,
.download-panel h3,
.preview-panel h3,
.tutorial-card h3 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.groups-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.group-card {
  padding: 10px;
}

.group-title {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  background: #202020;
  font-size: 0.8rem;
  color: #dadada;
}

.group-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.group-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 0.92rem;
}

.group-item img {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #333;
}

.knockout-scroll {
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.bracket-shell {
  min-width: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.bracket-side {
  display: flex;
  gap: 7px;
}

.bracket-left {
  justify-content: flex-end;
}

.bracket-right {
  justify-content: flex-start;
}

.bracket-round {
  min-width: 118px;
  display: grid;
  gap: 6px;
}

.bracket-round-title {
  border: 1px solid #2f2f2f;
  border-radius: 9px;
  background: #191919;
  padding: 6px 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cecece;
  font-weight: 700;
}

.bracket-round-list {
  display: grid;
  gap: var(--round-gap, 10px);
}

.bracket-match {
  position: relative;
  border: 1px solid #2b2b2b;
  border-radius: 10px;
  background: #151515;
  padding: 6px;
  min-height: 52px;
  display: grid;
  gap: 6px;
}

.bracket-meta {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.bracket-codes {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.bracket-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 28px;
  border-radius: 8px;
  border: 1px solid #44658a;
  background: #0f2742;
  color: #eaf4ff;
  font-family: "Teko", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.bracket-empty {
  height: 28px;
}

.bracket-left .bracket-match::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  border-top: 1px solid #3a3a3a;
}

.bracket-right .bracket-match::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 10px;
  border-top: 1px solid #3a3a3a;
}

.bracket-center {
  display: grid;
  align-content: center;
  gap: 8px;
  padding-top: 86px;
}

.bracket-final,
.bracket-third {
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  background: #141414;
  padding: 8px;
  display: grid;
  gap: 6px;
}

.bracket-final p,
.bracket-third p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bracket-final strong,
.bracket-third strong {
  font-size: 0.76rem;
}

.bracket-final {
  border-color: #d0a741;
  background: linear-gradient(180deg, #18130a, #141414 85%);
}

.bracket-codes-final .bracket-code {
  min-width: 44px;
  min-height: 34px;
  font-size: 1.24rem;
}

.bracket-right .bracket-meta {
  text-align: right;
}

.bracket-right .bracket-codes {
  justify-content: flex-end;
}

.builder-controls,
.download-panel,
.tutorial-grid {
  display: grid;
}

.builder-controls {
  margin: 16px 18px 0;
  grid-template-columns: minmax(260px, 1fr) 220px 260px auto;
  gap: 8px;
  align-items: end;
}

.builder-controls.is-matches-mode {
  grid-template-columns: 220px 260px;
}

#clearFiltersButton {
  min-height: 42px;
  align-self: end;
  justify-self: start;
  min-width: 180px;
  border-radius: 11px;
}

#clearMatchSelectionButton {
  min-height: 42px;
  justify-self: start;
  min-width: 170px;
  border-radius: 11px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.field span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field select {
  min-height: 42px;
  border-radius: 11px;
  border: 1px solid #333;
  background: #121212;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: #44db7d;
  box-shadow: 0 0 0 4px rgba(68, 219, 125, 0.16);
}

.teams-panel,
.matches-panel,
.download-panel,
.preview-panel {
  margin: 10px 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #111;
  padding: 12px;
}

.teams-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.matches-panel {
  display: grid;
  gap: 12px;
}

.matches-panel h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #d0d0d0;
  letter-spacing: 0.02em;
}

.matches-filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: end;
}

.group-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.group-mini-card {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  background: #171717;
  padding: 9px;
}

.group-mini-title {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  background: #202020;
  padding: 3px 8px;
  font-size: 0.78rem;
}

.group-mini-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.group-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 0.86rem;
}

.group-mini-item img {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #333;
}

.specific-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}

.specific-match {
  width: 100%;
  border: 1px solid #313131;
  border-radius: 12px;
  background: #181818;
  color: var(--text);
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.specific-match.is-selected {
  border-color: #31d06a;
  background: rgba(20, 201, 90, 0.16);
}

.specific-match-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.team-chip {
  min-height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid #303030;
  background: #191919;
  color: var(--text);
  padding: 0 10px;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}

.team-chip img {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #333;
}

.team-chip strong {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--muted);
}

.team-chip.is-selected {
  border-color: #31d06a;
  background: rgba(20, 201, 90, 0.16);
}

.download-panel {
  gap: 10px;
}

.download-copy p {
  margin: 6px 0 0;
}

.download-warning {
  margin: 0;
  border: 1px solid #5a3a2b;
  border-radius: 10px;
  background: rgba(255, 130, 75, 0.12);
  color: #ffd9ca;
  padding: 9px 11px;
  font-weight: 700;
  line-height: 1.35;
}

.download-friendly {
  border: 1px solid #2d3130;
  border-radius: 12px;
  background: #171919;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.download-friendly-title {
  margin: 0;
  color: #d7ece0;
  font-size: 0.9rem;
  font-weight: 700;
}

.download-friendly-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.download-pill {
  border: 1px solid #355145;
  border-radius: 999px;
  background: rgba(20, 201, 90, 0.12);
  color: #d9ffe9;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.preview-head {
  margin-bottom: 8px;
}

.preview-list {
  display: grid;
  gap: 8px;
}

.preview-meta {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.tutorial-grid {
  margin: 14px 18px 18px;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tutorial-card {
  padding: 12px;
}

.tutorial-card ol {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.tutorial-tip {
  margin: 0 18px 18px;
  border: 1px solid #2f3f35;
  border-radius: 12px;
  background: rgba(20, 201, 90, 0.08);
  color: #dff9e9;
  padding: 10px 12px;
  font-weight: 600;
  line-height: 1.45;
}

.footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-author {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid #343434;
  background: #171717;
  color: #e6e6e6;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: #4cd786;
  background: #1b221d;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #15a44b;
  color: #03110a;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.js [data-reveal].visible {
  animation: revealUp 0.56s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

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

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .bracket-shell {
    min-width: 820px;
  }

  .builder-controls {
    grid-template-columns: 1fr;
  }

  .builder-controls.is-matches-mode {
    grid-template-columns: 1fr;
  }

  .matches-filters {
    grid-template-columns: 1fr;
  }

  .tutorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .layout {
    width: calc(100vw - 16px);
    margin-top: 8px;
  }

  .topbar {
    border-radius: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .diagram-section,
  .how-it-works,
  .builder,
  .tutorial,
  .footer {
    border-radius: 18px;
  }

  .hero {
    padding: 18px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .bracket-shell {
    min-width: 720px;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
  }

  .bracket-round {
    min-width: 102px;
  }

  .bracket-code {
    min-width: 32px;
    min-height: 26px;
    font-size: 0.98rem;
  }

  .bracket-codes-final .bracket-code {
    min-width: 38px;
    min-height: 30px;
    font-size: 1.06rem;
  }

  .bracket-center {
    padding-top: 64px;
  }

  .groups-grid {
    grid-template-columns: 1fr 1fr;
  }

  .teams-grid {
    grid-template-columns: 1fr;
  }

  .specific-matches-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
  }
}

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