/* ============================================
   浩瀚体育CN 全站共享样式
   ============================================ */

:root {
  --bg-deep: #0A1628;
  --bg-panel: #101F36;
  --text-high: #E8F0FE;
  --text-muted: #A3B8D9;
  --accent-green: #44FFB0;
  --accent-orange: #FFA630;
  --danger: #FF6B5E;
  --divider: #264566;
  --white-layer: rgba(232, 240, 254, 0.08);
  --font-display: "Noto Sans SC Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", Consolas, monospace;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --header-h: 72px;
  --header-h-scrolled: 54px;
  --radius: 6px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  min-height: 100vh;
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(232, 240, 254, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 240, 254, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--text-high);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-high);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--accent-green);
  color: #081426;
}

[hidden] {
  display: none !important;
}

main {
  padding-top: var(--header-h);
  min-height: 60vh;
}

/* ---------- 工具类 ---------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-12 { grid-column: 1 / -1; }

.text-muted { color: var(--text-muted); }
.accent-green { color: var(--accent-green); }
.accent-orange { color: var(--accent-orange); }

.num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- 按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-primary {
  background: var(--accent-green);
  color: #081426;
}

.btn-primary:hover {
  background: #2EE89B;
  box-shadow: 0 0 0 4px rgba(68, 255, 176, 0.16);
}

.btn-outline {
  border-color: rgba(68, 255, 176, 0.55);
  background: transparent;
  color: var(--accent-green);
}

.btn-outline:hover {
  background: rgba(68, 255, 176, 0.1);
  border-color: var(--accent-green);
}

.btn-orange {
  background: var(--accent-orange);
  color: #081426;
}

.btn-orange:hover {
  background: #E8941F;
  box-shadow: 0 0 0 4px rgba(255, 166, 48, 0.16);
}

.btn-ghost {
  border-color: var(--divider);
  background: rgba(16, 31, 54, 0.5);
  color: var(--text-high);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-panel);
}

/* ---------- 标题与章节 ---------- */

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text-high);
  text-wrap: balance;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-high);
  letter-spacing: 0.04em;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent-green);
  flex: none;
}

.section-label-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
}

.section-label-text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-high);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ---------- 内页首屏 ---------- */

.page-hero {
  padding: 64px 0 40px;
  position: relative;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 48px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 40%;
  height: 3px;
  background: var(--accent-green);
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text-high);
}

.page-hero-desc {
  margin-top: 12px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ---------- 面包屑 ---------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.breadcrumbs a:hover {
  color: var(--accent-green);
}

.breadcrumbs-sep {
  color: var(--divider);
  font-family: var(--font-mono);
  font-size: 12px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--text-high);
  font-weight: 600;
}

/* ---------- 正文排版 ---------- */

.prose {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.prose p {
  margin: 0.9em 0;
}

.prose h2 {
  font-size: 26px;
  margin: 2em 0 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--divider);
}

.prose h3 {
  font-size: 20px;
  margin: 1.8em 0 0.6em;
}

.prose h4 {
  font-size: 17px;
  margin: 1.4em 0 0.4em;
}

.prose ul,
.prose ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.prose li {
  margin: 0.4em 0;
}

.prose a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--text-high);
  font-weight: 600;
}

.prose blockquote {
  margin: 1.6em 0;
  padding: 12px 20px;
  border-left: 3px solid var(--accent-orange);
  background: var(--bg-panel);
  color: var(--text-high);
}

/* ---------- 数据面板 ---------- */

.data-panel {
  background: var(--bg-panel);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.data-panel:hover {
  border-color: rgba(68, 255, 176, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.data-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--divider);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(16, 31, 54, 0.7);
}

.data-panel-body {
  padding: 18px;
}

.stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1;
  color: var(--accent-green);
  font-variant-numeric: tabular-nums;
}

/* ---------- 标签 ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.tag-green {
  background: rgba(68, 255, 176, 0.13);
  color: var(--accent-green);
  border: 1px solid rgba(68, 255, 176, 0.35);
}

.tag-orange {
  background: rgba(255, 166, 48, 0.13);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 166, 48, 0.35);
}

.tag-red {
  background: rgba(255, 107, 94, 0.13);
  color: var(--danger);
  border: 1px solid rgba(255, 107, 94, 0.35);
}

/* ---------- 图片容器 ---------- */

.img-frame {
  position: relative;
  display: block;
  background: var(--bg-panel);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.img-frame--portrait {
  aspect-ratio: 3 / 4;
}

.img-frame--square {
  aspect-ratio: 1 / 1;
}

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

.img-frame[data-caption]::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 10px;
  font-size: 12px;
  color: var(--text-high);
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
}

/* ---------- 跳转与进度 ---------- */

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--accent-green);
  color: #081426;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 0;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  z-index: 120;
  pointer-events: none;
}

/* ---------- 头部命令栏 ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header[data-scrolled] {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: height 0.3s var(--ease);
}

.site-header[data-scrolled] .header-inner {
  height: var(--header-h-scrolled);
}

.site-header[data-scrolled] .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

/* ---------- 品牌标识 ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--text-high);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent-green);
  color: #081426;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  transition: transform 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.04);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  border: 1px solid rgba(68, 255, 176, 0.4);
  border-radius: 3px;
  padding: 1px 5px;
  line-height: 1.4;
}

/* ---------- 导航 ---------- */

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-panel);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-index {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-green);
  opacity: 0.65;
  transition: opacity 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--text-high);
  background: var(--white-layer);
}

.nav-link[aria-current="page"] {
  background: var(--accent-green);
  color: #081426;
  font-weight: 600;
}

.nav-link[aria-current="page"] .nav-index {
  color: rgba(8, 20, 38, 0.55);
  opacity: 1;
}

/* ---------- 头部右侧工具 ---------- */

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border: 1px solid var(--divider);
  border-radius: 999px;
  background: rgba(16, 31, 54, 0.6);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  flex: none;
  animation: live-pulse 2s var(--ease) infinite;
}

@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(68, 255, 176, 0.55);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(68, 255, 176, 0);
  }
}

.live-text {
  letter-spacing: 0.04em;
}

.live-timer {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-green) calc(var(--count, 0) * 1turn), var(--divider) 0);
  flex: none;
}

.live-timer::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--bg-panel);
}

/* ---------- 移动端导航按钮 ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--divider);
  border-radius: 6px;
  background: var(--bg-panel);
  padding: 10px;
  flex: none;
  transition: border-color 0.2s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--accent-green);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-high);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

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

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

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

/* ---------- 页脚 ---------- */

.site-footer {
  position: relative;
  margin-top: 96px;
  background: #081225;
  border-top: 1px solid var(--divider);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--divider) 55%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--divider);
}

.footer-brand-block {
  max-width: 620px;
}

.footer-brand-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 19px;
}

.footer-brand-name .brand-text {
  font-size: 24px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 10px;
}

.footer-trust {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  border-left: 3px solid var(--accent-green);
  padding-left: 14px;
}

.footer-stats {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.footer-stat {
  min-width: 108px;
  text-align: right;
  padding: 12px 16px;
  border: 1px solid var(--divider);
  background: var(--bg-panel);
  border-radius: 4px;
}

.footer-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 30px;
  color: var(--accent-green);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.footer-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 48px;
  padding: 40px 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}

.footer-col a {
  color: var(--text-high);
  font-size: 14px;
  opacity: 0.85;
  width: fit-content;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent-green);
  opacity: 1;
  transform: translateX(3px);
}

.footer-col span {
  color: var(--text-muted);
  font-size: 14px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--accent-green);
}

/* ---------- 返回顶部 ---------- */

.back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--accent-green);
  color: #081426;
  font-size: 22px;
  line-height: 1;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.back-top:hover {
  background: #2EE89B;
  transform: translateY(-3px);
}

/* ---------- 滚动显现 ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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

/* ---------- 响应式 ---------- */

@media (max-width: 960px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-panel);
    border: 1px solid var(--divider);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 16px 20px 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
  }

  .nav-link[aria-current="page"] {
    background: rgba(68, 255, 176, 0.12);
    color: var(--accent-green);
  }

  .nav-link[aria-current="page"] .nav-index {
    color: var(--accent-green);
    opacity: 1;
  }

  .footer-inner {
    padding: 0 20px;
  }

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

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-stats {
    width: 100%;
    justify-content: flex-start;
  }

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

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

@media (max-width: 480px) {
  .brand-text {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .live-text {
    display: none;
  }

  .live-timer {
    display: none;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ---------- 动效弱化 ---------- */

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .live-dot {
    animation: none;
  }

  .live-timer {
    display: none;
  }

  .back-top:hover {
    transform: none;
  }
}
