@font-face {
  font-family: 'Satoshi';
  src: url('./Satoshi-Variable.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* Fallback for browsers that don't support variable fonts */
@font-face {
  font-family: 'Satoshi';
  src: url('./Satoshi-Variable.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Audio player styling for dark theme with better spacing */
audio {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(107, 70, 193, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  margin: 8px 0;
  outline: none;
}

audio::-webkit-media-controls-panel {
  background: transparent;
  border-radius: 8px;
  padding: 4px 8px;
}

audio::-webkit-media-controls-play-button {
  background: rgba(107, 70, 193, 0.8);
  border-radius: 50%;
  margin-right: 12px;
  width: 32px;
  height: 32px;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #e0e0e0;
  font-size: 12px;
  font-weight: 500;
  margin: 0 8px;
}

audio::-webkit-media-controls-timeline {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 0 12px;
  height: 6px;
}

audio::-webkit-media-controls-volume-slider {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-left: 12px;
  height: 6px;
}

/* Firefox audio controls */
audio::-moz-range-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: 6px;
  border: none;
}

audio::-moz-range-thumb {
  background: rgba(107, 70, 193, 0.9);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

audio::-moz-range-progress {
  background: rgba(107, 70, 193, 0.7);
  border-radius: 4px;
  height: 6px;
}

/* Hover effects for better UX */
audio:hover {
  border-color: rgba(107, 70, 193, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

audio:focus {
  border-color: rgba(107, 70, 193, 0.7);
  box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.2);
} 