/* Standard Standalone & Vite Compatible CSS */

/* Custom Utilities for 8090 Movie Web */
.bg-gold-gradient {
  background: linear-gradient(135deg, #f3d679 0%, #d4af37 50%, #aa822d 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #f5db8b 0%, #d4af37 50%, #aa822d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gold-subtle {
  border-color: rgba(212, 175, 55, 0.25);
}

.shadow-gold {
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0c0e;
}
::-webkit-scrollbar-thumb {
  background: #28251c;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Base Body Styles */
body {
  background-color: #0b0c0e;
  color: #e0e0e0;
  font-family: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
}
