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

:root {
  --bg: #0a0e27;
  --bg-alt: #1a1a2e;
  --bg-card: rgba(26, 26, 46, 0.82);
  --electric: #00f0ff;
  --cyber: #ff2a6d;
  --yellow: #fcee0a;
  --text: #e0e0ff;
  --text-dim: #b0b8c8;
  --success: #00ff9f;
  --warning: #ffb800;
  --border: rgba(0, 240, 255, 0.16);
  --border-strong: rgba(0, 240, 255, 0.4);
  --font-display: 'Chakra Petch', 'Orbitron', Impact, 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', system-ui, Arial, sans-serif;
  --header-h: 72px;
  --container-w: 1280px;
  --gap: clamp(1rem, 3vw, 2rem);
  --clip-btn: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  --shadow-card: 0 10px 32px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: var(--electric);
  color: var(--bg);
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--electric);
}

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

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

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

ul,
ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.22);
}

.skip-link {
  position: fixed;
  top: 0.9rem;
  left: -9999px;
  z-index: 2100;
  padding: 0.7rem 1.4rem;
  background: var(--electric);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: var(--clip-btn);
}

.skip-link:focus {
  left: 0.9rem;
}

#main-content {
  scroll-margin-top: var(--header-h);
  outline: none;
}

.site-body {
  flex: 1 0 auto;
  margin-top: var(--header-h);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  margin-bottom: 0.55rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(var(--container-w), 100% - 2 * var(--gap));
  margin-inline: auto;
}

.container-narrow {
  width: min(920px, 100% - 2 * var(--gap));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.section-title {
  position: relative;
  padding-left: clamp(2rem, 4vw, 3rem);
}

.section-title::before {
  content: attr(data-index);
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--electric);
  padding: 0 0.5em;
  border: 1px solid var(--border-strong);
  clip-path: var(--clip-btn);
  background: rgba(0, 240, 255, 0.06);
}

.section-sub {
  max-width: 560px;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--electric);
  border: 1px solid var(--electric);
  clip-path: var(--clip-btn);
  transition: background 0.2s ease, color 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: transparent;
  color: var(--electric);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.55));
}

.btn:active {
  filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.4));
}

.btn-outline {
  background: transparent;
  color: var(--electric);
}

.btn-outline:hover {
  background: var(--electric);
  color: var(--bg);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.btn-legacy {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--bg);
}

.btn-legacy:hover {
  background: transparent;
  color: var(--yellow);
  filter: drop-shadow(0 0 10px rgba(252, 238, 10, 0.45));
}

.btn-sm {
  padding: 0.42rem 0.95rem;
  font-size: 0.76rem;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--border-strong);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-card:hover {
  color: var(--cyber);
  border-color: var(--cyber);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  height: var(--header-h);
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28%;
  height: 2px;
  background: var(--electric);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.6);
  transition: width 0.4s ease;
}

.site-header:hover::after {
  width: 40%;
}

.header-inner {
  max-width: var(--container-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gap);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: linear-gradient(135deg, var(--electric) 0%, rgba(0, 240, 255, 0.55) 100%);
  color: var(--bg);
  font-size: 1.05rem;
  font-weight: 700;
  clip-path: var(--clip-btn);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.45));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.07) rotate(-4deg);
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.6));
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: -1px;
  height: 2px;
  background: var(--electric);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--electric);
  background: rgba(0, 240, 255, 0.04);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--electric);
  background: rgba(0, 240, 255, 0.07);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--cyber);
  box-shadow: 0 0 10px rgba(255, 42, 109, 0.7);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  clip-path: var(--clip-btn);
  transition: border-color 0.2s ease, filter 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--electric);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--electric);
  transition: transform 0.25s ease, opacity 0.25s 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);
}

.nav-quick-mobile {
  display: none;
}

.site-footer {
  position: relative;
  margin-top: auto;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyber) 0%, var(--electric) 48%, transparent 100%);
  box-shadow: 0 0 18px rgba(255, 42, 109, 0.45);
}

.footer-main {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand-col .brand {
  margin-bottom: 1.1rem;
}

.footer-trust {
  max-width: 360px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-dim);
  padding-left: 0.85rem;
  border-left: 2px solid var(--cyber);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--electric);
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cyber);
  box-shadow: 0 0 8px rgba(255, 42, 109, 0.6);
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  display: inline-block;
  padding: 0.18rem 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.footer-links a:hover {
  color: var(--electric);
  border-bottom-color: var(--electric);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.contact-value {
  color: var(--text);
  word-break: break-all;
}

.contact-note {
  margin-top: 0.9rem;
  padding-left: 0.7rem;
  border-left: 2px solid var(--yellow);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  background: rgba(10, 14, 39, 0.65);
  padding: 0.9rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-copy {
  margin: 0;
}

.footer-icp {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.breadcrumb {
  padding: 0.9rem 0;
  background: rgba(26, 26, 46, 0.55);
  border-bottom: 1px solid var(--border);
}

.crumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.crumb-item {
  color: var(--text-dim);
}

.crumb-item + .crumb-item::before {
  content: '/';
  margin-right: 0.4rem;
  color: var(--electric);
}

.crumb-item a {
  color: var(--text-dim);
  text-decoration: none;
}

.crumb-item a:hover {
  color: var(--electric);
}

.crumb-item[aria-current="page"] {
  color: var(--electric);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28em 0.7em;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid;
  white-space: nowrap;
}

.badge-live {
  color: var(--electric);
  border-color: var(--electric);
  background: rgba(0, 240, 255, 0.08);
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.72);
  }
}

.badge-warning {
  color: var(--cyber);
  border-color: var(--cyber);
  background: rgba(255, 42, 109, 0.08);
}

.badge-update {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(252, 238, 10, 0.08);
}

.badge-done {
  color: var(--success);
  border-color: var(--success);
  background: rgba(0, 255, 159, 0.08);
}

.badge-pending {
  color: var(--warning);
  border-color: var(--warning);
  background: rgba(255, 184, 0, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2em 0.6em;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid var(--border);
}

.panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4px;
  height: calc(100% + 2px);
  background: var(--electric);
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  color: var(--electric);
}

.img-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-alt);
  background-image:
    linear-gradient(135deg, rgba(0, 240, 255, 0.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0, 240, 255, 0.06) 25%, transparent 25%);
  background-size: 20px 20px;
  border: 1px solid var(--border);
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 240, 255, 0.12);
  pointer-events: none;
}

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

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 2px solid var(--border-strong);
  background: rgba(0, 240, 255, 0.04);
}

.data-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  color: var(--text-dim);
}

.data-table tbody tr:hover td {
  background: rgba(0, 240, 255, 0.045);
}

.kbd {
  display: inline-block;
  padding: 0.15em 0.5em;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--electric);
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
}

[data-scroll-progress] {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--electric), var(--cyber) 60%, var(--yellow));
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.7);
  z-index: 2200;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1700;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--electric);
  background: rgba(10, 14, 39, 0.92);
  border: 1px solid var(--border-strong);
  clip-path: var(--clip-btn);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, color 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

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

.back-to-top:hover {
  color: var(--bg);
  background: var(--electric);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.55));
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
}

@media (max-width: 992px) {
  .site-header::after {
    width: 100%;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: block;
    justify-self: stretch;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: var(--shadow-card);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem var(--gap) 0.4rem;
    gap: 0;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.6rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    border-left: 3px solid transparent;
  }

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

  .nav-link[aria-current="page"] {
    border-left-color: var(--electric);
  }

  .nav-quick-mobile {
    display: block;
    padding: 0.9rem var(--gap) 1.2rem;
  }

  .nav-quick-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 0.6rem;
  }

  .nav-quick-mobile .btn {
    margin-right: 0.4rem;
    margin-top: 0.3rem;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 0.9rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .breadcrumb {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@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;
  }

  .badge-live::before {
    animation: none;
  }

  .img-frame:hover img {
    transform: none;
  }
}
