/* ══════════════════════════════════════════════
   EXILIUM — RESET & BASE
   Reset global, tipografía base, scrollbar,
   selección y body setup.
   ══════════════════════════════════════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px !important; }
::-webkit-scrollbar-track { background: rgba(5,5,10,0.95) !important; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dim), var(--gold)) !important;
  border-radius: 3px !important;
  box-shadow: 0 0 6px rgba(200,146,42,0.3) !important;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright) !important; }

/* ── Selection ── */
::selection {
  background: rgba(200,146,42,0.3) !important;
  color: var(--gold-pale) !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
