/**
 * =========================================================
 * 大华导航 Dahua Nav
 * 玻璃拟态模板主样式：public/themes/glass/assets/css/style.css
 * =========================================================
 *
 * 设计语言：高级玻璃拟态 (Glassmorphism 2.0)
 * - 通透毛玻璃效果
 * - 柔和渐变光晕背景
 * - 微妙悬浮阴影
 * - 精致微交互动画
 * =========================================================
 */

/* ---------------------------------------------------------
   1. 设计令牌
--------------------------------------------------------- */

:root {
  /* 玻璃面板 */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.14);
  --glass-bg-card: rgba(255, 255, 255, 0.07);
  --glass-bg-hover: rgba(255, 255, 255, 0.16);
  --glass-bg-active: rgba(255, 255, 255, 0.22);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.25);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
  --glass-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.14);
  --glass-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.28);
  --glass-shadow-glow: 0 0 30px rgba(120, 140, 255, 0.15);

  /* 色彩 */
  --text-primary: #f0f2f8;
  --text-secondary: rgba(240, 242, 248, 0.72);
  --text-muted: rgba(240, 242, 248, 0.48);
  --text-inverse: #0f0f1a;

  --accent-1: #788cff;
  --accent-2: #5fa8ff;
  --accent-3: #a78bfa;
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-3));

  --danger: #ff6b6b;
  --warning: #ffb347;
  --success: #51cf66;

  /* 布局 */
  --max-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* 毛玻璃统一参数 */
  --blur-amount: 20px;
  --blur-amount-strong: 32px;
  --saturate-amount: 1.3;

  /* 安全区 */
  --safe-bottom: env(safe-area-inset-bottom, 0px);

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

/* ---------------------------------------------------------
   2. 基础重置
--------------------------------------------------------- */

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

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

body {
  min-height: 100vh;
  color: var(--text-primary);
  font-family:
    "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto,
    "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans CJK SC",
    sans-serif;
  line-height: 1.6;
  background: #0a0a14;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

[hidden] {
  display: none !important;
}

/* ---------------------------------------------------------
   3. 背景层 — 深邃太空渐变 + 光晕 + 网格
--------------------------------------------------------- */

.glass-page {
  position: relative;
  background:
    radial-gradient(800px 500px at 15% 20%, rgba(60, 80, 220, 0.18), transparent 60%),
    radial-gradient(700px 450px at 85% 15%, rgba(140, 80, 220, 0.14), transparent 55%),
    radial-gradient(600px 400px at 50% 80%, rgba(40, 160, 240, 0.10), transparent 50%),
    linear-gradient(165deg, #0a0a14 0%, #0f0f24 30%, #0a0a18 60%, #060612 100%);
  background-attachment: fixed;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -4;
  opacity: 0.6;
  will-change: transform;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(80, 100, 255, 0.25), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(160, 100, 240, 0.20), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite alternate-reverse;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(60, 180, 255, 0.12), transparent 70%);
  animation: orbFloat 26s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.08);
  }
  66% {
    transform: translate(-20px, 40px) scale(0.95);
  }
  100% {
    transform: translate(30px, -20px) scale(1.04);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---------------------------------------------------------
   4. 加载状态
--------------------------------------------------------- */

.glass-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #0a0a14;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.glass-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  box-shadow: var(--glass-shadow);
}

.loader-ring {
  width: 48px;
  height: 48px;
  position: relative;
}

.ring-segment {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent-1);
  border-right-color: var(--accent-3);
  animation: ringSpin 0.9s linear infinite;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---------------------------------------------------------
   5. 域名锁定
--------------------------------------------------------- */

.domain-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 6, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lock-modal {
  max-width: 400px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  box-shadow: var(--glass-shadow-lg);
}

.lock-icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.lock-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}

.lock-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   6. 主容器
--------------------------------------------------------- */

.app-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  padding-bottom: calc(24px + var(--safe-bottom));
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   7. 通用玻璃面板组件
--------------------------------------------------------- */

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  box-shadow: var(--glass-shadow-sm);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

/* ---------------------------------------------------------
   8. HEADER
--------------------------------------------------------- */

.gl-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin-bottom: 14px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--blur-amount-strong)) saturate(var(--saturate-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount-strong)) saturate(var(--saturate-amount));
  box-shadow: var(--glass-shadow);
}

.gl-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
}

.gl-logo {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(120, 140, 255, 0.25));
  border-radius: 8px;
}

.gl-brand-name {
  white-space: nowrap;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #e0e4ff, #b0c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 4px 16px rgba(120, 140, 255, 0.30);
  transition:
    transform 0.28s var(--ease-spring),
    box-shadow 0.28s ease;
  white-space: nowrap;
}

.gl-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 24px rgba(120, 140, 255, 0.45);
}

.gl-cta:active {
  transform: scale(0.97);
}

.cta-arrow {
  font-size: 16px;
  transition: transform 0.24s ease;
}

.gl-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* ---------------------------------------------------------
   9. 公告跑马灯
--------------------------------------------------------- */

.gl-marquee {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(120, 140, 255, 0.10);
  border: 1px solid rgba(120, 140, 255, 0.10);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}

.marquee-track {
  padding: 6px 16px;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
  animation: marqueeScroll 22s linear infinite;
  padding-left: 100%;
  will-change: transform;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------------------------------------------------------
   10. 轮播图
--------------------------------------------------------- */

.gl-carousel {
  margin-bottom: 14px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  box-shadow: var(--glass-shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.carousel-track .car-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 2.8 / 1;
  min-height: 180px;
  max-height: 380px;
  overflow: hidden;
}

.carousel-track .car-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-track .car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.carousel-track .car-slide:hover img {
  transform: scale(1.04);
}

.car-slide-empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

.car-slide-empty strong {
  font-size: 16px;
  color: var(--text-secondary);
}

/* 轮播箭头 */
.car-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.28s var(--ease-out), background 0.24s ease;
  cursor: pointer;
}

.carousel-viewport:hover .car-arrow {
  opacity: 1;
}

.car-arrow-left {
  left: 12px;
}

.car-arrow-right {
  right: 12px;
}

.car-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.car-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* 轮播指示点 */
.car-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  padding: 0;
}

.car-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--accent-1);
  border-color: var(--accent-1);
  box-shadow: 0 0 12px rgba(120, 140, 255, 0.40);
}

.car-dot:hover {
  background: rgba(255, 255, 255, 0.50);
}

.car-dot.active:hover {
  background: var(--accent-1);
}

/* ---------------------------------------------------------
   11. 图标滚动条
--------------------------------------------------------- */

.gl-icon-strip {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: var(--glass-shadow-sm);
  overflow: hidden;
  padding: 8px 0;
}

.icon-strip-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  will-change: transform;
}

.icon-strip-item {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease;
  cursor: pointer;
}

.icon-strip-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 140, 255, 0.20);
  border-color: var(--glass-border-hover);
}

.icon-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ---------------------------------------------------------
   12. 主体区域 — 分类标签
--------------------------------------------------------- */

.gl-main {
  margin-bottom: 30px;
}

.main-header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.gl-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: var(--glass-shadow-sm);
}

.gl-tabs::-webkit-scrollbar {
  display: none;
}

.gl-tab {
  flex: 0 0 auto;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.gl-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.gl-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(120, 140, 255, 0.30);
}

/* ---------------------------------------------------------
   13. 卡片网格
--------------------------------------------------------- */

.gl-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.gl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 14px;
  text-align: center;
  cursor: pointer;
  border-radius: var(--radius-md);
  background: var(--glass-bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: var(--glass-shadow-sm);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: cardFadeIn 0.5s var(--ease-out) forwards;
  animation-delay: var(--stagger, 0ms);
}

.gl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gl-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow:
    var(--glass-shadow),
    var(--glass-shadow-glow);
}

.gl-card:hover::before {
  opacity: 1;
}

.gl-card:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--glass-bg-active);
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 卡片角标 */
.gl-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 2px 10px rgba(120, 140, 255, 0.35);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* 卡片图标 */
.gl-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
  transition: transform 0.3s var(--ease-spring);
}

.gl-card:hover .gl-card-icon {
  transform: scale(1.08);
}

/* 卡片标题 */
.gl-card-title {
  max-width: 100%;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* 卡片描述 */
.gl-card-desc {
  max-width: 100%;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* ---------------------------------------------------------
   14. 空状态
--------------------------------------------------------- */

.gl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 24px;
  text-align: center;
}

.empty-symbol {
  font-size: 40px;
  opacity: 0.25;
  margin-bottom: 4px;
}

.empty-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-secondary);
}

.empty-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------------------------------------------------------
   15. FOOTER
--------------------------------------------------------- */

.gl-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 0 4px;
  text-align: center;
}

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

.footer-logo-img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  border-radius: 6px;
}

.footer-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---------------------------------------------------------
   16. 无 JS 提示
--------------------------------------------------------- */

.nojs-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-strong);
  border: 1px solid rgba(255, 180, 60, 0.20);
  color: var(--warning);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(var(--saturate-amount));
  box-shadow: var(--glass-shadow);
}

/* ---------------------------------------------------------
   17. 工具类
--------------------------------------------------------- */

.fade-in {
  animation: fadeIn 0.35s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

  .gl-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .carousel-track {
    transition: none;
  }

  .marquee-content {
    animation: none;
  }
}
