* {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Golden hours glow effect */
.golden-glow {
  animation: goldenPulse 3s ease-in-out infinite;
}

@keyframes goldenPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.25);
  }
}

/* Current time indicator pulse */
.current-time-pulse {
  animation: timePulse 2s ease-in-out infinite;
}

@keyframes timePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main > * {
  animation: fadeInUp 0.4s ease-out backwards;
}

main > *:nth-child(1) { animation-delay: 0.05s; }
main > *:nth-child(2) { animation-delay: 0.1s; }
main > *:nth-child(3) { animation-delay: 0.15s; }
main > *:nth-child(4) { animation-delay: 0.2s; }
main > *:nth-child(5) { animation-delay: 0.25s; }
main > *:nth-child(6) { animation-delay: 0.3s; }
main > *:nth-child(7) { animation-delay: 0.35s; }

/* Responsive improvements */
@media (max-width: 640px) {
  .golden-glow {
    animation: none;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
  }
}

/* Focus styles */
input:focus, button:focus, select:focus {
  outline: none;
  ring: 2px;
  ring-color: #10b981;
}

/* Button hover states */
button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

/* Timeline hover effects */
.timeline-row:hover {
  background: rgba(16, 185, 129, 0.05);
}