/* ============================================
   博鱼·体育 共享全站样式 /assets/site.css
   ============================================ */

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

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

body {
  font-family: 'Noto Serif SC', 'SimSun', serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #F5F7FA;
  background: #0B1D3A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #E8C766;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

/* ---------- Design Tokens ---------- */
:root {
  --primary-navy: #0B1D3A;
  --primary-gold: #D4AF37;
  --accent-red: #E63946;
  --accent-green: #2A9D8F;
  --text-light: #F5F7FA;
  --text-muted: #A0A8B8;
  --surface-dark: #101F33;
  --surface-mid: #1B2A47;
  --surface-soft: #223355;
  --line-gold: #B8962E;
  --grad-start: #0F2027;
  --grad-end: #203A43;

  --font-head: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Roboto Mono', 'Consolas', monospace;
  --font-body: 'Noto Serif SC', 'SimSun', serif;

  --header-h: 72px;
  --header-h-mobile: 60px;
  --container-w: 1280px;
  --container-px: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

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

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
}

strong {
  font-weight: 700;
  color: var(--text-light);
}

code, .mono {
  font-family: var(--font-mono);
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1440px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--primary-gold);
  color: var(--primary-navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--primary-navy);
}

/* ---------- Site Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: var(--surface-mid);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.site-header__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-red) 100%);
  z-index: 10;
  transition: width 80ms linear;
}

.site-header__inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- Brand ---------- */
.site-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-brand__mark {
  color: var(--primary-gold);
  font-size: 1.625rem;
  font-weight: 700;
}

.site-brand__dot {
  color: var(--accent-red);
  margin: 0 2px;
}

.site-brand__name {
  color: var(--text-light);
  font-weight: 400;
}

/* ---------- Navigation ---------- */
.site-nav__list {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.site-nav__link {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.88);
  padding: 0.5rem 0.125rem;
  position: relative;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav__link:hover {
  color: var(--primary-gold);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--primary-gold);
}

.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ---------- Status Chip ---------- */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 100px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.status-chip:hover {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.12);
}

.status-chip__text {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.status-chip:hover .status-chip__text {
  color: var(--primary-gold);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  position: relative;
  flex-shrink: 0;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  opacity: 0.6;
  animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ---------- Nav Toggle (Hamburger) ---------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

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

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

/* ---------- Mobile Nav Drawer ---------- */
@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    height: var(--header-h-mobile);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 85vw);
    height: 100dvh;
    background: var(--surface-mid);
    padding: calc(var(--header-h-mobile) + 2rem) var(--container-px) 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 90;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.35);
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.125rem;
  }

  .site-nav__item {
    border-bottom: 1px solid rgba(245, 247, 250, 0.06);
  }

  .site-nav__link {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.0625rem;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link[aria-current="page"] {
    color: var(--primary-gold);
    padding-left: 0.875rem;
    border-left: 3px solid var(--primary-gold);
  }

  .site-header__actions {
    gap: 0.5rem;
  }

  .status-chip {
    display: none;
  }
}

body.nav-is-open {
  overflow: hidden;
}

body.nav-is-open .site-header {
  background: var(--surface-mid);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-red) 50%, var(--accent-green) 100%);
  opacity: 0.65;
  z-index: 1;
}

.site-footer__top {
  padding: 4.5rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.site-footer__brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.site-footer__brand-mark {
  color: var(--primary-gold);
  font-size: 1.625rem;
}

.site-footer__brand-dot {
  color: var(--accent-red);
  margin: 0 2px;
}

.site-footer__brand-name {
  color: var(--text-light);
  font-weight: 400;
}

.site-footer__statement {
  font-family: var(--font-head);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 0;
}

.site-footer__title {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-gold);
  border-left: 3px solid var(--primary-gold);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}

.site-footer__list li,
.site-footer__item {
  margin-bottom: 0.625rem;
}

.site-footer__list a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: rgba(245, 247, 250, 0.75);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-footer__list a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.site-footer__contact-label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__contact-value {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: rgba(245, 247, 250, 0.85);
  line-height: 1.4;
}

.site-footer__bottom {
  border-top: 1px solid rgba(245, 247, 250, 0.08);
  padding: 1.5rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.site-footer__copyright {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: var(--primary-gold);
}

.site-footer__icp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Back to Top ---------- */
.back-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.back-top:hover.is-visible {
  transform: translateY(-2px);
}

.back-top__icon {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--primary-navy);
  border-left: 3px solid var(--primary-navy);
  transform: rotate(45deg);
  margin-top: 5px;
}

@media (max-width: 767px) {
  .back-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }

  .back-top__icon {
    width: 11px;
    height: 11px;
    border-top-width: 2px;
    border-left-width: 2px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.875em 2.25em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--primary-gold);
  color: var(--primary-navy);
}

.btn--primary:hover {
  background: #E8C766;
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn--ghost {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #E8C766;
  transform: translateY(-2px);
}

.btn--success {
  background: var(--accent-green);
  color: var(--primary-navy);
}

.btn--success:hover {
  background: #38B2A4;
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn--danger {
  background: var(--accent-red);
  color: var(--text-light);
}

.btn--danger:hover {
  background: #F0414E;
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 1rem 0;
}

.breadcrumb__item {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

.breadcrumb__item::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(160, 168, 184, 0.5);
}

.breadcrumb__item:last-child::after {
  display: none;
}

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

.breadcrumb__item a:hover {
  color: var(--primary-gold);
}

.breadcrumb__item[aria-current="page"] {
  color: var(--primary-gold);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--dark {
  background: var(--surface-dark);
}

.section--navy {
  background: var(--primary-navy);
}

.section--mid {
  background: var(--surface-mid);
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.section__number {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary-gold);
  opacity: 0.55;
  line-height: 1;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.section__subtitle {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* ---------- Data Card ---------- */
.data-card {
  background: var(--surface-mid);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.data-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.data-card__number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.data-card__label {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.data-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Status Badges ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25em 0.75em;
  border-radius: 100px;
  line-height: 1.4;
}

.status--live {
  color: var(--accent-green);
  background: rgba(42, 157, 143, 0.12);
  border: 1px solid rgba(42, 157, 143, 0.3);
}

.status--alert {
  color: var(--accent-red);
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.status--info {
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ---------- Data Chip ---------- */
.data-chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  padding: 0.375em 1em;
  white-space: nowrap;
}

/* ---------- Image Frame ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--surface-mid);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.img-frame::before {
  content: "";
  display: block;
}

.img-frame--16-9::before {
  padding-top: 56.25%;
}

.img-frame--4-3::before {
  padding-top: 75%;
}

.img-frame--3-2::before {
  padding-top: 66.67%;
}

.img-frame--1-1::before {
  padding-top: 100%;
}

.img-frame__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-frame:hover .img-frame__figure {
  transform: scale(1.03);
}

.img-frame__slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--surface-mid), var(--surface-dark));
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
}

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: var(--surface-mid);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-head);
  font-size: 0.875rem;
}

.table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--primary-gold);
  background: var(--surface-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  white-space: nowrap;
}

.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(245, 247, 250, 0.06);
  color: var(--text-light);
  vertical-align: middle;
}

.table td.mono {
  font-family: var(--font-mono);
}

.table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.05);
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="left"].is-revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="right"].is-revealed {
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }
}

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

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

  .site-footer__top {
    padding: 3.5rem 0 2.5rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .site-footer__brand-col {
    grid-column: auto;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .status-dot::after {
    animation: none;
  }
}
