/* ============================================================
   浩瀚体育 APP · 全站共享样式 /assets/site.css
   设计系统：夜空蓝 + 荧光绿 + 冠军金
   视觉隐喻：绿茵数据终端 / 命令栏导航 / 堆叠画板
   ============================================================ */

/* ---------- Reset & 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
  background-color: #0B1B2E;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-family: 'DIN Condensed', 'Oswald', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: #39FF88;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

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

address { font-style: normal; }

dl, dt, dd { margin: 0; }

ul, ol { margin: 0 0 1em; padding-left: 1.4em; }

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid #39FF88;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- 设计变量 ---------- */
:root {
  --color-night: #0B1B2E;
  --color-deep: #08131E;
  --color-card: #122A44;
  --color-line: #1B3A5C;
  --color-white: #FFFFFF;
  --color-silver: #A0B0C0;
  --color-neon: #39FF88;
  --color-gold: #F5B62A;
  --font-heading: 'DIN Condensed', 'Oswald', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Space Mono', 'IBM Plex Mono', monospace;
  --header-height: 72px;
  --container-w: 1280px;
  --radius: 2px;
  --border: 1px solid #1B3A5C;
}

/* ---------- 跳转链接 ---------- */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 10px 16px;
  background: #39FF88;
  color: #08131E;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transform: translateY(-240%);
  transition: transform 0.2s ease;
  text-decoration: none;
}

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

/* ---------- 容器与主内容 ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.main-content {
  display: block;
  min-height: 60vh;
  scroll-margin-top: 80px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: #39FF88;
  border-color: #39FF88;
  color: #08131E;
}

.btn--primary:hover {
  background: #6BFFA5;
  border-color: #6BFFA5;
  color: #08131E;
}

.btn--ghost {
  background: transparent;
  border-color: #1B3A5C;
  color: #FFFFFF;
}

.btn--ghost:hover {
  border-color: #39FF88;
  color: #39FF88;
}

.btn--sm { min-height: 34px; padding: 0 12px; font-size: 0.8125rem; }
.btn--lg { min-height: 48px; padding: 0 28px; font-size: 1rem; }

/* ---------- 头部：紧凑命令栏 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 27, 46, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1B3A5C;
}

.site-header::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #39FF88 0%, rgba(57, 255, 136, 0.35) 30%, #1B3A5C 65%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-height);
}

/* 品牌 */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark:hover { text-decoration: none; }

.brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #39FF88;
  color: #08131E;
  font-family: 'DIN Condensed', 'Oswald', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 78% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 78% 100%, 0 100%);
}

.brand-name {
  font-family: 'DIN Condensed', 'Oswald', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  white-space: nowrap;
}

.brand-suffix {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 4px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #39FF88;
  border: 1px solid rgba(57, 255, 136, 0.45);
  border-radius: 2px;
  vertical-align: 3px;
}

/* 导航 */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  margin: 0;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #A0B0C0;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-item:hover {
  color: #FFFFFF;
  background: rgba(57, 255, 136, 0.06);
  border-color: rgba(57, 255, 136, 0.18);
  text-decoration: none;
}

.nav-item[aria-current="page"] {
  color: #FFFFFF;
  background: rgba(57, 255, 136, 0.1);
  border-color: rgba(57, 255, 136, 0.32);
  box-shadow: inset 0 -2px 0 #39FF88;
}

.nav-index {
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: #39FF88;
}

/* 头部右侧状态区 */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.season-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #A0B0C0;
  border: 1px solid #1B3A5C;
  border-radius: 2px;
  white-space: nowrap;
}

.season-pulse {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #39FF88;
  animation: season-pulse 2.4s ease-out infinite;
}

@keyframes season-pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 255, 136, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(57, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 255, 136, 0); }
}

/* 移动导航按钮 */
.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid #1B3A5C;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover { border-color: rgba(57, 255, 136, 0.5); }

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #FFFFFF;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ---------- 头部响应式 ---------- */
@media (max-width: 1100px) {
  .season-status { display: none; }
}

@media (max-width: 980px) {
  .header-inner { min-height: 60px; gap: 12px; }
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 16px 24px 20px;
    background: #08131E;
    border-bottom: 1px solid #1B3A5C;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  }

  .site-nav[data-open] { display: flex; }

  .nav-item {
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 0.9375rem;
    border-color: rgba(27, 58, 92, 0.6);
  }

  .nav-item:hover,
  .nav-item[aria-current="page"] { border-color: rgba(57, 255, 136, 0.35); }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) 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(-6px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .header-inner { gap: 8px; }
  .brand-name { font-size: 1.125rem; }
  .brand-symbol { width: 34px; height: 34px; font-size: 1rem; }
  .header-actions { gap: 8px; }
  .btn--primary { min-height: 38px; padding: 0 10px; font-size: 0.8125rem; }
  .nav-toggle { width: 38px; height: 38px; }
}

/* ---------- 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: 80px;
  background: #08131E;
  border-top: 1px solid #1B3A5C;
}

.site-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #39FF88 0%, #F5B62A 55%, #1B3A5C 100%);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.footer-brand:hover { text-decoration: none; }

.footer-brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #39FF88;
  color: #08131E;
  font-family: 'DIN Condensed', 'Oswald', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 78% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 78% 100%, 0 100%);
}

.footer-brand-name {
  font-family: 'DIN Condensed', 'Oswald', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.footer-brand-name sup {
  margin-left: 4px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #39FF88;
  vertical-align: 3px;
}

.footer-trust {
  margin: 18px 0 0;
  padding-left: 14px;
  max-width: 380px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #A0B0C0;
  border-left: 2px solid rgba(57, 255, 136, 0.4);
}

.footer-nav-col,
.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-heading {
  margin: 0 0 8px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #39FF88;
}

.footer-link {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #A0B0C0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link:hover {
  color: #39FF88;
  padding-left: 4px;
  text-decoration: none;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #A0B0C0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(27, 58, 92, 0.7);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #A0B0C0;
}

.footer-copy { color: #FFFFFF; }
.footer-icp { letter-spacing: 0.04em; }
.footer-slogan { margin-left: auto; color: #39FF88; letter-spacing: 0.06em; }

/* ---------- 页脚响应式 ---------- */
@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer-brand-col,
  .footer-contact-col { grid-column: 1 / -1; }

  .footer-trust { max-width: 520px; }
}

@media (max-width: 620px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-col,
  .footer-contact-col { grid-column: auto; }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-slogan { margin-left: 0; }
}

/* ---------- 章节与堆叠画板 ---------- */
.section { padding: 56px 0; }

.stack-panels {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.panel {
  position: relative;
  padding: 28px;
  background: #122A44;
  border: 1px solid #1B3A5C;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.panel--cut { overflow: hidden; }

.panel--cut::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(to top right, transparent 49%, rgba(57, 255, 136, 0.12) 50%);
  pointer-events: none;
}

.panel--green { border-left: 3px solid #39FF88; }
.panel--gold { border-left: 3px solid #F5B62A; }

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

.section-index {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #39FF88;
  background: rgba(57, 255, 136, 0.08);
  border: 1px solid rgba(57, 255, 136, 0.3);
  border-radius: 2px;
}

.section-title {
  margin: 0;
  font-family: 'DIN Condensed', 'Oswald', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

.section-desc {
  width: 100%;
  margin: 2px 0 0;
  max-width: 680px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #A0B0C0;
}

/* ---------- 首屏组件 ---------- */
.page-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background: linear-gradient(180deg, #08131E 0%, #0B1B2E 100%);
  border-bottom: 1px solid #1B3A5C;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(225deg, rgba(57, 255, 136, 0.1) 0%, rgba(57, 255, 136, 0) 55%);
  pointer-events: none;
}

.page-title {
  max-width: 720px;
  margin: 0;
  font-size: 3rem;
}

.page-lead {
  max-width: 560px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: #A0B0C0;
}

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

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

@media (max-width: 980px) {
  .grid-cols-3,
  .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .section { padding: 40px 0; }
  .section-title { font-size: 1.75rem; }
  .page-hero { padding: 44px 0 36px; }
  .page-title { font-size: 2.25rem; }
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 面包屑 ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #A0B0C0;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '/';
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  color: #1B3A5C;
}

.breadcrumb a { color: #A0B0C0; text-decoration: none; }
.breadcrumb a:hover { color: #39FF88; text-decoration: none; }
.breadcrumb [aria-current="page"] { color: #FFFFFF; }

/* ---------- 标签 ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #A0B0C0;
  border: 1px solid #1B3A5C;
  border-radius: 2px;
  white-space: nowrap;
}

.tag--green {
  color: #39FF88;
  border-color: rgba(57, 255, 136, 0.35);
  background: rgba(57, 255, 136, 0.08);
}

.tag--gold {
  color: #F5B62A;
  border-color: rgba(245, 182, 42, 0.35);
  background: rgba(245, 182, 42, 0.08);
}

/* ---------- 数据数字 ---------- */
.data-num {
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #39FF88;
}

.data-num--gold { color: #F5B62A; }
.data-num--sm { font-size: 1.375rem; }

/* ---------- 价格行 ---------- */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27, 58, 92, 0.6);
}

.price-row:last-child { border-bottom: 0; }

.price-label { font-size: 0.875rem; color: #A0B0C0; }

.price-value {
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #39FF88;
}

.price-note {
  margin-left: 8px;
  font-size: 0.75rem;
  color: #A0B0C0;
}

/* ---------- 图片容器 ---------- */
.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #122A44;
  border: 1px solid #1B3A5C;
  aspect-ratio: 16 / 9;
}

.img-frame--wide { aspect-ratio: 21 / 9; }
.img-frame--portrait { aspect-ratio: 3 / 4; }
.img-frame--square { aspect-ratio: 1 / 1; }

.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(57, 255, 136, 0.16) 0%, rgba(57, 255, 136, 0) 40%);
  pointer-events: none;
}

/* ---------- 文字辅助 ---------- */
.eyebrow {
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #39FF88;
}

.muted { color: #A0B0C0; }
.hl { color: #39FF88; }
.hl--gold { color: #F5B62A; }

.rule {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background: #1B3A5C;
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---------- 阅读进度条 ---------- */
[data-scroll-progress] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #39FF88, #F5B62A);
  pointer-events: none;
}

/* ---------- 减弱动效 ---------- */
@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;
  }

  .season-pulse { animation: none; box-shadow: none; }
  .nav-toggle-bar { transition: none; }
  .img-frame img { transition: none; }
  .img-frame:hover img { transform: none; }
}
