/* ============================================
   星空体育CN — 共享站点样式 /assets/site.css
   ============================================ */

/* ---------- 01. DESIGN TOKENS & RESET ---------- */

:root {
  --space-deep: #0B1E3A;
  --space-night: #081426;
  --space-orbit: #16325E;
  --neon-green: #39FF88;
  --star-yellow: #FFD166;
  --ice-cyan: #66E0FF;
  --star-white: #F5F7FA;
  --silver-blue: #B8C4D0;
  --aurora-purple: #7C6CF0;

  --header-height: 76px;
  --header-height-mobile: 64px;
  --content-width: 1200px;
  --content-pad: clamp(1rem, 4vw, 2rem);

  --font-head: "Archivo", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Nunito", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background: var(--space-night);
  color: var(--star-white);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.5vw, 1.0625rem);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-lock {
  overflow: hidden;
}

::selection {
  background: var(--neon-green);
  color: var(--space-night);
}

:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 2px;
}

/* ---------- 02. TYPOGRAPHY & BASE ---------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--star-white);
  text-wrap: balance;
}

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

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

h3 {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.375rem);
}

p,
li {
  word-break: break-word;
}

a {
  color: inherit;
}

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

.main-content a:not([class]) {
  color: var(--neon-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(57, 255, 136, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s var(--ease-out);
}

.main-content a:not([class]):hover {
  text-decoration-color: var(--neon-green);
}

blockquote,
.pull-quote {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.125rem, 1rem + 1vw, 1.375rem);
  line-height: 1.6;
  color: var(--star-white);
  border-left: 3px solid var(--star-yellow);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0;
}

/* ---------- 03. LAYOUT PRIMITIVES ---------- */

.main-content {
  min-height: 70vh;
}

.page-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.prose-container {
  max-width: 72ch;
}

.section {
  padding: 4rem 0;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-split-2-1 {
    grid-template-columns: 2fr minmax(280px, 1fr);
  }
}

/* ---------- 04. GENERIC BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px 4px 12px 4px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--space-night);
  box-shadow: 0 0 0 rgba(57, 255, 136, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(57, 255, 136, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--star-white);
  border: 1px solid rgba(102, 224, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--ice-cyan);
  background: rgba(102, 224, 255, 0.08);
}

/* ---------- 05. BREADCRUMBS ---------- */

.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumbs-item + .breadcrumbs-item::before {
  content: "/";
  color: var(--silver-blue);
  opacity: 0.5;
  margin-right: 0.4rem;
}

.breadcrumbs-link {
  color: var(--ice-cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs-link:hover {
  color: var(--neon-green);
}

.breadcrumbs-current {
  color: var(--star-white);
  font-weight: 700;
}

/* ---------- 06. CARDS & PANELS ---------- */

.panel {
  background: var(--space-deep);
  border: 1px solid rgba(102, 224, 255, 0.12);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 224, 255, 0.3);
  box-shadow: 0 14px 40px rgba(8, 20, 38, 0.5);
}

.panel--em {
  background: linear-gradient(135deg, var(--space-deep), var(--space-orbit));
  border-color: rgba(57, 255, 136, 0.22);
}

.cut-panel {
  border-radius: 18px 4px 18px 4px;
}

.pull-quote {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.125rem, 1rem + 1vw, 1.375rem);
  line-height: 1.6;
  color: var(--star-white);
  border-left: 3px solid var(--star-yellow);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0;
}

.star-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--silver-blue);
  font-size: 0.875rem;
}

.star-divider::before,
.star-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 224, 255, 0.35), transparent);
}

/* ---------- 07. IMAGE FRAMES ---------- */

.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--space-orbit);
  border-radius: 14px;
  min-height: 120px;
}

.image-frame[data-ratio="wide"] {
  aspect-ratio: 16 / 7;
}

.image-frame[data-ratio="square"] {
  aspect-ratio: 1 / 1;
}

.image-frame[data-ratio="portrait"] {
  aspect-ratio: 3 / 4;
}

.image-frame::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--silver-blue);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-align: center;
  background-image:
    radial-gradient(1px 1px at 25% 25%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(102, 224, 255, 0.3), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(255, 209, 102, 0.25), transparent);
}

.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 08. FILTER BAR ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  border: 1px solid rgba(102, 224, 255, 0.25);
  background: transparent;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
}

.filter-btn:hover {
  border-color: var(--ice-cyan);
  color: var(--star-white);
}

.filter-btn[data-active="true"] {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--space-night);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(57, 255, 136, 0.3);
}

[data-filter-target][data-hidden="true"] {
  display: none;
}

/* ---------- 09. HEADER ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height-mobile);
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.96), rgba(11, 30, 58, 0.86));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(102, 224, 255, 0.14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 60%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 32% 30%, rgba(102, 224, 255, 0.22), transparent),
    radial-gradient(1px 1px at 68% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 83% 20%, rgba(255, 209, 102, 0.28), transparent),
    radial-gradient(1px 1px at 92% 60%, rgba(57, 255, 136, 0.24), transparent);
  pointer-events: none;
  z-index: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: var(--content-pad);
  z-index: 200;
  transform: translateY(-120%);
  background: var(--neon-green);
  color: var(--space-night);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.star-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, var(--ice-cyan), var(--neon-green) 55%, var(--star-yellow));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.header-shell {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-orbit {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  inset: 1px;
  border: 1.5px solid rgba(102, 224, 255, 0.55);
  border-radius: 50%;
}

.orbit-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.7));
}

.orbit-star::before,
.orbit-star::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--star-yellow);
  border-radius: 1px;
}

.orbit-star::before {
  width: 3px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.orbit-star::after {
  width: 12px;
  height: 3px;
  transform: translate(-50%, -50%);
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(57, 255, 136, 0.8);
  transform-origin: 50% 17px;
  animation: orbit-spin 4s linear infinite;
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.brand-cn {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--star-white);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.6875rem;
  color: var(--silver-blue);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.command-nav {
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem 1.5rem 2.5rem;
  background: rgba(8, 20, 38, 0.96);
  backdrop-filter: blur(18px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}

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

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 0.75rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--silver-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s var(--ease-out), background-color 0.2s;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: transparent;
}

.nav-idx {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ice-cyan);
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--star-white);
  background: rgba(102, 224, 255, 0.07);
}

.nav-link:hover .nav-idx {
  color: var(--neon-green);
  opacity: 1;
}

.nav-link[aria-current="page"] {
  color: var(--star-white);
  background: rgba(57, 255, 136, 0.08);
}

.nav-link[aria-current="page"]::before {
  background: var(--neon-green);
}

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

.nav-label {
  transition: text-decoration-color 0.2s;
}

.nav-link:hover .nav-label {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-style: solid;
  text-decoration-color: rgba(102, 224, 255, 0.45);
  text-underline-offset: 5px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--space-night);
  background: var(--neon-green);
  border-radius: 12px 4px 12px 4px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  box-shadow: 0 4px 18px rgba(57, 255, 136, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(57, 255, 136, 0.4);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--star-yellow);
  outline-offset: 2px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(102, 224, 255, 0.22);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.nav-toggle:hover {
  border-color: var(--ice-cyan);
}

.toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--star-white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[data-open] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[data-open] .toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[data-open] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 10. FOOTER ---------- */

.site-footer {
  position: relative;
  background: var(--space-night);
  color: var(--silver-blue);
  border-top: 1px solid rgba(102, 224, 255, 0.1);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aurora-purple) 20%, var(--ice-cyan) 50%, var(--neon-green) 80%, transparent);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 40%, rgba(255, 255, 255, 0.12), transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(102, 224, 255, 0.12), transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 209, 102, 0.15), transparent),
    radial-gradient(1px 1px at 80% 55%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1.5px 1.5px at 90% 25%, rgba(57, 255, 136, 0.12), transparent);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem var(--content-pad) 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-note {
  display: grid;
  gap: 1rem;
}

.site-footer .brand-cn {
  font-size: 1.375rem;
}

.site-footer .brand-sub {
  font-size: 0.75rem;
}

.footer-about {
  font-size: 0.9375rem;
  max-width: 42ch;
}

.footer-trust {
  font-size: 0.875rem;
  color: var(--star-yellow);
  opacity: 0.85;
  max-width: 44ch;
  border-left: 2px solid rgba(255, 209, 102, 0.4);
  padding-left: 0.875rem;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--star-white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--neon-green);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-list a {
  color: var(--silver-blue);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out);
}

.footer-list a:hover {
  color: var(--neon-green);
  padding-left: 4px;
}

.footer-contact-line {
  font-size: 0.875rem;
  color: var(--silver-blue);
  margin-bottom: 0.375rem;
}

.footer-service {
  font-size: 0.8125rem;
  color: var(--ice-cyan);
  opacity: 0.8;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.25rem var(--content-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--silver-blue);
}

.footer-copy span {
  color: var(--star-white);
}

.footer-tagline {
  color: var(--silver-blue);
  letter-spacing: 0.04em;
}

/* ---------- 11. JS STATE PROTOCOLS ---------- */

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

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

/* ---------- RESPONSIVE ---------- */

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: var(--header-height);
  }

  .command-nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
  }

  .nav-link {
    display: inline-flex;
    gap: 0.375rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom: none;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }

  .nav-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 2.2fr 1fr 1.2fr 1.6fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }
}

@media (max-width: 767px) {
  .brand-sub {
    display: none;
  }
}

/* ---------- REDUCED MOTION ---------- */

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

  .orbit-dot {
    animation: none;
    opacity: 0.6;
  }

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