/* VYRL MEDIA - Production Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: #0b0f19;
  color: #f1f5f9;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

/* Subtle glowing accents */
.glow-amber {
  box-shadow: 0 0 25px -5px rgba(245, 158, 11, 0.25);
}

.glow-orange {
  box-shadow: 0 0 25px -5px rgba(249, 115, 22, 0.3);
}

/* Audio Waveform Canvas Animation */
.waveform-bar {
  transition: height 0.15s ease-in-out;
}
