/* Ticker Styles — Slow & Premium White */
.ticker-bar {
  background: #FFFFFF;
  color: #0A0A0A;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  gap: 80px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-label {
  color: #9A7B2F; /* Rich gold for readability on white */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-value {
  font-family: var(--font-body);
  color: #000000;
}

.ticker-change.up { color: #008000; font-weight: 800; }
.ticker-change.down { color: #DD0000; font-weight: 800; }

.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00FF00;
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

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

/* Adjust Navbar Position */
.navbar {
  top: 36px; /* Offset for ticker */
}

@media (max-width: 768px) {
  .navbar { top: 34px; }
  .section-padding.first-section { padding-top: 140px; }
}
