/* ============================================
   /assets/site.css
   博澳体育汇 · 共享层
   ============================================ */

/* ---------- 变量与重置 ---------- */
:root {
  --color-bg: #0B1026;
  --color-bg-alt: #111A35;
  --color-rail: #1A2440;
  --color-data: #00FF88;
  --color-cta: #FF6A00;
  --color-danger: #FF3B30;
  --color-text: #E5E9F0;
  --color-muted: #8892B0;
  --color-gold: #FFB100;
  --color-paper: #F5F2EB;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-head: "Inter", "Noto Sans SC", "PingFang SC", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --rail-width: 260px;
  --toolbar-height: 64px;
  --gradient-body: linear-gradient(160deg, #0B1026 0%, #0B1026 55%, #111A35 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--gradient-body);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
figure {
  margin: 0;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.0625rem;
}

p {
  margin: 0 0 1em;
}

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

a:hover {
  color: var(--color-data);
}

address {
  font-style: normal;
}

button {
  font: inherit;
  color: inherit;
}

input {
  font: inherit;
}

::selection {
  background: rgba(0, 255, 136, 0.28);
  color: #E5E9F0;
}

:focus-visible {
  outline: 2px solid var(--color-data);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #1A2440;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #0B1026;
}

/* ---------- 响应式断点变量 ---------- */
@media (min-width: 721px) and (max-width: 960px) {
  :root {
    --rail-width: 88px;
  }
}

@media (max-width: 720px) {
  :root {
    --rail-width: 0px;
    --toolbar-height: 56px;
  }
}

/* ---------- 工具类 ---------- */
.mono {
  font-family: var(--font-mono);
}

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

/* ---------- 跳过链接 ---------- */
.skip-link {
  position: fixed;
  top: -72px;
  left: 16px;
  z-index: 2000;
  background: var(--color-data);
  color: #0B1026;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}

/* ---------- 左侧品牌轨道 ---------- */
.brand-rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--rail-width);
  z-index: 360;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, var(--color-data) 0%, var(--color-gold) 55%, var(--color-cta) 100%) left / 3px 100% no-repeat,
    linear-gradient(180deg, rgba(0, 255, 136, 0.05), transparent 32%),
    var(--color-rail);
  border-right: 1px solid var(--color-border);
  overflow-y: auto;
  overflow-x: hidden;
}

.brand-rail:focus {
  outline: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px 22px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s ease;
}

.brand-lockup:hover {
  background: rgba(255, 255, 255, 0.03);
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--color-data);
  color: #0B1026;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.125rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  flex-shrink: 0;
}

.brand-meta {
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-data);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  flex: 1;
}

.rail-link {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  padding: 0 20px;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease, border-left-color 0.15s ease;
}

.rail-link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border-left-color: rgba(0, 255, 136, 0.35);
}

.rail-link.is-active,
.rail-link[aria-current="page"] {
  color: var(--color-data);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), transparent 70%);
  border-left-color: var(--color-data);
}

.rail-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gold);
  width: 22px;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.rail-link:hover .rail-index {
  color: var(--color-cta);
}

.rail-link[aria-current="page"] .rail-index {
  color: var(--color-data);
}

.rail-label {
  display: block;
  white-space: nowrap;
}

.rail-foot {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
}

.rail-version {
  font-size: 0.6875rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

/* ---------- 顶部工具条 ---------- */
.header-toolbar {
  position: fixed;
  top: 0;
  left: var(--rail-width);
  right: 0;
  height: var(--toolbar-height);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  background: rgba(11, 16, 38, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-toolbar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(180deg, var(--color-cta), var(--color-gold));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.nav-toggle:hover {
  border-color: var(--color-data);
  background: rgba(0, 255, 136, 0.06);
}

.nav-toggle-box {
  display: block;
  width: 18px;
}

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

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

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

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

[data-nav-toggle][aria-expanded="true"] .nav-toggle-bar {
  background: var(--color-data);
}

.search-field {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 14px;
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-field:focus-within {
  border-color: var(--color-data);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.12);
}

.search-glyph {
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-muted);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.search-glyph::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--color-muted);
  border-radius: 1px;
  right: -6px;
  bottom: -4px;
  transform: rotate(45deg);
}

.search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.search-input::placeholder {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  opacity: 1;
}

.search-input:focus-visible {
  outline: 0;
}

.header-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0 4px;
  flex-shrink: 0;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-data);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.8);
  animation: livePulse 2.2s ease-in-out infinite;
}

.live-label {
  font-size: 0.6875rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

/* ---------- 滚动进度条 ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: var(--rail-width);
  right: 0;
  height: 3px;
  z-index: 600;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--color-data);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
  transition: width 0.1s linear;
}

/* ---------- 头部响应式 ---------- */
@media (min-width: 721px) and (max-width: 960px) {
  .brand-lockup {
    justify-content: center;
    padding: 16px 0;
  }

  .brand-meta,
  .rail-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .rail-link {
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .rail-index {
    width: auto;
  }

  .rail-foot {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-toolbar {
    gap: 10px;
    padding: 0 12px;
  }

  .header-toolbar::before {
    display: none;
  }

  .search-field {
    max-width: none;
  }

  .live-label {
    display: none;
  }

  .brand-rail {
    top: var(--toolbar-height);
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .brand-rail[data-open="true"] {
    transform: translateX(0);
    box-shadow: 10px 0 36px rgba(0, 0, 0, 0.5);
  }

  body.nav-open::after {
    content: '';
    position: fixed;
    top: var(--toolbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 9, 22, 0.62);
    z-index: 355;
  }
}

/* ---------- 主内容区 ---------- */
#main-content {
  margin-left: var(--rail-width);
  padding: calc(var(--toolbar-height) + 32px) clamp(24px, 4vw, 56px) 96px;
  min-height: 70vh;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- 页脚 ---------- */
.site-footer {
  margin-left: var(--rail-width);
  padding: 56px clamp(20px, 4vw, 56px) 24px;
  background:
    linear-gradient(180deg, rgba(17, 26, 53, 0.55), rgba(11, 16, 38, 0.95)),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, 0.025) 14px 16px);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-data) 0%, var(--color-gold) 45%, var(--color-cta) 85%, var(--color-data) 100%);
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr 0.9fr;
  gap: 40px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-col {
  min-width: 0;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-lockup:hover .footer-logo {
  background: var(--color-gold);
}

.footer-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--color-data);
  color: #0B1026;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.0625rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: background 0.15s ease;
}

.footer-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 10px;
  max-width: 30ch;
}

.footer-trust {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 40ch;
  border-left: 2px solid rgba(0, 255, 136, 0.35);
  padding-left: 12px;
  margin: 0;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-data);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-left: 12px;
  position: relative;
}

.footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--color-cta);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav a {
  color: var(--color-muted);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-nav a:hover {
  color: var(--color-data);
  padding-left: 6px;
}

.footer-email,
.footer-phone {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 8px;
  word-break: break-all;
}

.footer-email::before,
.footer-phone::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-data);
  margin-right: 8px;
  vertical-align: 2px;
}

.footer-note {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin: 14px 0 10px;
  max-width: 32ch;
}

.footer-address {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 26ch;
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
  margin-top: 6px;
}

.footer-icp {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 16px 0 0;
  border-left: 2px solid rgba(255, 177, 0, 0.4);
  padding-left: 8px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-copy {
  font-size: 0.75rem;
  color: #5A6482;
  margin: 0;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- 通用按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn--primary {
  background: var(--color-cta);
  color: #0B1026;
}

.btn--primary:hover {
  background: #FF8534;
  color: #0B1026;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: var(--color-data);
  color: var(--color-data);
}

.btn--mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  border: 1px solid rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.08);
  color: var(--color-data);
  padding: 8px 16px;
}

.btn--mono:hover {
  background: rgba(0, 255, 136, 0.15);
  color: var(--color-data);
}

/* ---------- 章节与标题 ---------- */
.section {
  margin-bottom: 64px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-data);
  border: 1px solid rgba(0, 255, 136, 0.35);
  padding: 2px 8px;
  border-radius: 3px;
}

.section-title {
  margin: 0;
}

/* ---------- 卡片 ---------- */
.card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  border-color: rgba(0, 255, 136, 0.35);
}

.card--diag {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  padding: 28px 28px 40px;
}

.card--paper {
  background: var(--color-paper);
  color: #1A2440;
  border-color: transparent;
}

.card--paper h1,
.card--paper h2,
.card--paper h3,
.card--paper h4 {
  color: #0B1026;
}

.card--paper:hover {
  border-color: var(--color-gold);
}

/* ---------- 栅格 ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 721px) and (max-width: 960px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- 正文容器 ---------- */
.prose {
  max-width: 68ch;
}

.prose p {
  margin: 0 0 1.25em;
  color: var(--color-text);
  opacity: 0.9;
}

.prose a {
  color: var(--color-data);
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  transition: border-bottom-color 0.15s ease;
}

.prose a:hover {
  border-bottom-color: var(--color-data);
}

.prose h2 {
  margin: 1.6em 0 0.6em;
  padding-top: 0.6em;
  border-top: 1px solid var(--color-border);
}

.prose h3 {
  margin: 1.4em 0 0.4em;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25em;
}

/* ---------- 面包屑 ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--color-muted);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--color-data);
}

.breadcrumb .sep {
  color: var(--color-data);
}

/* ---------- 数据数字 ---------- */
.data-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.375em;
  line-height: 1.2;
  color: var(--color-data);
  font-variant-numeric: tabular-nums;
}

/* ---------- 标签 ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-data);
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 3px;
  padding: 3px 10px;
}

.paper-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: #0B1026;
  background: var(--color-paper);
  padding: 4px 10px;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

/* ---------- 图片容器 ---------- */
.figure {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.figure--ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.figure--ratio-4x3 {
  aspect-ratio: 4 / 3;
}

.figure--ratio-1x1 {
  aspect-ratio: 1 / 1;
}

.figure--diag {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

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

.figure-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
  padding-top: 8px;
}

/* ---------- 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .live-pulse {
    animation: none;
  }
}
