

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Crystal Diamond and glassmorphism structural classes */
.crystal-card {
  background: linear-gradient(135deg, rgba(24, 3, 46, 0.72) 0%, rgba(8, 1, 16, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.crystal-panel {
  background: rgba(16, 2, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.crystal-border-glow {
  border-color: rgba(240, 163, 10, 0.25);
  box-shadow: 0 0 15px rgba(240, 163, 10, 0.08);
}

.diamond-glow {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Custom glassy scrollbars for the luxury look */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(8, 1, 16, 0.5);
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 163, 10, 0.25);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 163, 10, 0.45);
}

