@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Custom Animations */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Dashboard Animation */
.dashboard-container {
  perspective: 1000px;
}

.dashboard-card {
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.dashboard-card:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-5px);
}

/* Ticker Animation */
.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

/* Glow Effects */
.glow-gold {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Chart Mockup */
.chart-mockup div {
  animation: grow 1.5s ease-in-out infinite alternate;
}

@keyframes grow {
  from { height: 0; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ticker-content {
    animation-duration: 20s;
  }
}