/* ── Reset & root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --glass:        rgba(255, 200, 100, .04);
  --glass-border: rgba(255, 200, 100, .10);
  --glow-amber:   rgba(217, 119,   6, .35);
  --glow-gold:    rgba(245, 158,  11, .20);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #0A0704;
  color: #FEF3C7;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: #0A0704; }
::-webkit-scrollbar-thumb { background: #92400E; border-radius: 3px; }
