@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Main Fonts */
.font-display {
  font-family: 'Libre Caslon Text', serif;
}

.font-sans {
  font-family: 'Manrope', sans-serif;
}

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

/* Custom Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(229, 228, 226, 0.15);
}

.gold-shimmer {
  background: linear-gradient(135deg, #D4AF37 0%, #f2ca50 50%, #D4AF37 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.monitor-ribbon {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0c0f10;
}

::-webkit-scrollbar-thumb {
  background: #191c1d;
  border-radius: 4px;
  border: 2px solid #0c0f10;
}

::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}
