/* =========================
   Mario G. Klau — Styles
   ========================= */

:root {
  --brand-dark: #0b0f19;
  --brand-gold: #d4af37;
  --brand-gray: #1e293b;
}

/* Custom UI helpers */
.glass-nav {
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-gradient {
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.14) 0%,
    rgba(11, 15, 25, 1) 72%
  );
}

/* Smooth + neat scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Subtle section separators */
.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Simple reveal (optional) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.chord-pre{
  max-height: 520px;
  overflow-y: auto;
  scroll-behavior: smooth;
}



