/* ═══════════════════════════════════════════════════════════════════════════
   ALGORISER — Premium Design System  v14
   Real-Time NSE Market Intelligence Terminal
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS — CSS Custom Properties
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* ── Fonts ─────────────────────────────────────────────────────────────── */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Cascadia Code', Consolas, monospace;

  /* ── Colors — Dark Mode Base ──────────────────────────────────────────── */
  --bg-deep:        #030709;
  --bg-base:        #060A14;
  --bg-surface:     #0B1120;
  --bg-elevated:    #111827;
  --bg-highlight:   #1A2332;
  --bg-glass:       rgba(6, 10, 20, 0.82);

  /* ── Text Hierarchy ───────────────────────────────────────────────────── */
  --text-primary:   #F0F4F8;
  --text-secondary: #94A3B8;
  --text-tertiary:  #64748B;
  --text-muted:     #475569;

  /* ── Accent — Emerald / CTA ───────────────────────────────────────────── */
  --cta:            #10B981;
  --cta-hover:      #059669;
  --cta-light:      #34D399;
  --cta-dim:        rgba(16, 185, 129, 0.08);

  /* ── Semantic Colors ──────────────────────────────────────────────────── */
  --green:          #10B981;
  --red:            #EF4444;
  --amber:          #F59E0B;
  --blue:           #3B82F6;
  --purple:         #8B5CF6;

  /* ── Borders & Dividers ───────────────────────────────────────────────── */
  --divider:        rgba(148, 163, 184, 0.08);
  --divider-soft:   rgba(148, 163, 184, 0.04);
  --border-focus:   rgba(16, 185, 129, 0.4);

  /* ── Border Radii ─────────────────────────────────────────────────────── */
  --r-xs:  4px;
  --r-sm:  6px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-2xl: 20px;

  /* ── Shadows ──────────────────────────────────────────────────────────── */
  --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-xl:  0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.12);

  /* ── Transitions ──────────────────────────────────────────────────────── */
  --ease-fast:  0.16s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-med:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:  0.44s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout Constants ─────────────────────────────────────────────────── */
  --header-h:   52px;
  --ticker-h:   32px;
  --info-h:     34px;
  --sidebar-w:  220px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

::selection {
  background: rgba(16, 185, 129, 0.25);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.12);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.2);
}

img { max-width: 100%; display: block; }
a   { color: inherit; }


/* ═══════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.tabnum, .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. TERMINAL HEADER — Dashboard Top Bar
   ═══════════════════════════════════════════════════════════════════════════ */
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--divider);
  gap: 12px;
  z-index: 100;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ── Live Badge — Pulsing Indicator ──────────────────────────────────────── */
.brand-live-badge {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.brand-live-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--cta);
  opacity: 0;
  animation: liveRing 2s ease-out infinite;
}

@keyframes liveRing {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Market Status Badge ────────────────────────────────────────────────── */
.market-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 99px;
  background: var(--cta-dim);
  border: 1px solid rgba(16, 185, 129, 0.15);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.market-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.market-status-text {
  color: var(--cta);
  text-transform: uppercase;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── Scan Badge ─────────────────────────────────────────────────────────── */
.scan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 99px;
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.scan-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: scanPulse 1.2s ease-in-out infinite;
}

@keyframes scanPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0); }
}

.scan-num {
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Header Clock ───────────────────────────────────────────────────────── */
.header-clock {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  padding: 4px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--r-sm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. TICKER STRIP — Market Index Marquee
   ═══════════════════════════════════════════════════════════════════════════ */
.ticker-strip {
  width: 100%;
  height: var(--ticker-h);
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--divider);
  position: relative;
}

/* Edge fade masks */
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}
.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 100%;
  white-space: nowrap;
  border-right: 1px solid var(--divider-soft);
  flex-shrink: 0;
  transition: background var(--ease-fast);
}

.ticker-item:hover {
  background: rgba(148, 163, 184, 0.03);
}

.ticker-name {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker-val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  transition: color var(--ease-fast);
}

.ticker-chg {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--r-xs);
  font-variant-numeric: tabular-nums;
  transition: all var(--ease-fast);
}

.ticker-chg.up {
  color: var(--green);
  background: rgba(16, 185, 129, 0.08);
}

.ticker-chg.down {
  color: var(--red);
  background: rgba(239, 68, 68, 0.08);
}

/* Flash animations for live price updates */
@keyframes flashUp {
  0%   { background: rgba(16, 185, 129, 0.25); color: #6EE7B7; }
  100% { background: transparent; }
}
@keyframes flashDown {
  0%   { background: rgba(239, 68, 68, 0.25); color: #FCA5A5; }
  100% { background: transparent; }
}
.flash-up   { animation: flashUp 0.8s ease-out; }
.flash-down { animation: flashDown 0.8s ease-out; }


/* ═══════════════════════════════════════════════════════════════════════════
   6. TAB BAR — Signal Desk Navigation
   ═══════════════════════════════════════════════════════════════════════════ */
.tab-bar {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 0 6px;
  height: 38px;
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-bar::-webkit-scrollbar { height: 0; }

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: none;
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--ease-fast);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-secondary);
  background: var(--bg-elevated);
}

.tab-btn.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
  box-shadow: inset 0 -2px 0 var(--cta);
}

.tab-text {
  font-size: inherit;
}

/* ── Tab Live Indicator ──────────────────────────────────────────────────── */
.tab-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta);
  flex-shrink: 0;
  animation: tabDotPulse 2s ease-in-out infinite;
}

@keyframes tabDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50%      { opacity: 0.4; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. SIGNAL TABLE — Data Grid Styles
   ═══════════════════════════════════════════════════════════════════════════ */
.signal-table {
  width: 100%;
  font-size: 0.76rem;
}

.signal-table-header {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr 1.2fr;
  padding: 8px 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 5;
}

.signal-row {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr 1.2fr;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--divider-soft);
  cursor: pointer;
  transition: background var(--ease-fast);
}

.signal-row:hover {
  background: var(--bg-surface);
}

.signal-row:active {
  background: var(--bg-elevated);
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. BREADTH CARDS — Market Health Panels
   ═══════════════════════════════════════════════════════════════════════════ */
.breadth-card {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease-med), transform var(--ease-med);
}

.breadth-card:hover {
  border-color: rgba(148, 163, 184, 0.12);
  transform: translateY(-1px);
}

.breadth-card-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--divider);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadth-card-body {
  padding: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   9. BUTTONS & FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.22);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--divider);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease-fast);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.15);
}


/* ═══════════════════════════════════════════════════════════════════════════
   10. PILLS & BADGES
   ═══════════════════════════════════════════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: var(--r-xs);
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pill-buy,
.pill-green {
  background: var(--cta-dim);
  color: var(--cta);
}

.pill-sell,
.pill-red {
  background: rgba(239, 68, 68, 0.08);
  color: var(--red);
}

.pill-neutral {
  background: var(--bg-elevated);
  color: var(--text-tertiary);
  border: 1px solid var(--divider);
}


/* ═══════════════════════════════════════════════════════════════════════════
   11. GLASSMORPHISM PANELS
   ═══════════════════════════════════════════════════════════════════════════ */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--divider);
  border-radius: var(--r-lg);
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. AMBIENT BACKGROUND EFFECTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Ambient gradient glow */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.04;
  background: var(--cta);
  animation: ambientFloat 20s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
  0%   { transform: translate(-30%, -30%); }
  33%  { transform: translate(10%, 20%); }
  66%  { transform: translate(-20%, 10%); }
  100% { transform: translate(15%, -20%); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. SECTION — SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.29s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════════════
   14. PARTICLE CANVAS (JS-driven background)
   ═══════════════════════════════════════════════════════════════════════════ */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════════════════════
   15. RESPONSIVE UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 46px;
    --ticker-h: 28px;
  }

  .ticker-name { font-size: 0.54rem; }
  .ticker-val  { font-size: 0.64rem; }
  .ticker-chg  { font-size: 0.56rem; padding: 1px 4px; }

  .terminal-header { padding: 0 10px; gap: 8px; }
  .header-left { gap: 6px; min-width: 0; flex: 1; overflow: hidden; }
  .header-right { flex-shrink: 0; }
  .header-clock { font-size: 0.62rem; padding: 3px 6px; }

  .tab-bar { padding: 0 4px; }
  .tab-btn { padding: 5px 8px; font-size: 0.64rem; gap: 4px; }

  .brand-name { font-size: 0.74rem; }
}

@media (max-width: 480px) {
  .scan-badge  { display: none; }
  .market-status-badge { font-size: 0.52rem; padding: 2px 6px; }
  .market-status-text { letter-spacing: 0.03em; }
  .header-clock { font-size: 0.58rem; padding: 2px 5px; }
  .brand-name { font-size: 0.7rem; }
  .tab-btn { padding: 4px 6px; font-size: 0.6rem; }
  .tab-live-dot { width: 4px; height: 4px; }

  .ticker-strip::before,
  .ticker-strip::after { width: 30px; }
  .ticker-item { padding: 0 12px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   16. MICRO-INTERACTION KEYFRAMES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Gentle float for cards */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-4px); }
}

/* Shimmer loading skeleton */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-elevated) 0%,
    var(--bg-highlight) 40%,
    var(--bg-elevated) 80%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  border-radius: var(--r-sm);
}

/* Glow pulse for important elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
  50%      { box-shadow: 0 0 20px 4px rgba(16, 185, 129, 0.1); }
}

/* Entrance fade-up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Count-up number animation helper */
@keyframes countPop {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   17. FOCUS & ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

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

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

  .ticker-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
