/* ==========================================================================
   Base — Reset, html/body globals, scrollbar
   ========================================================================== */

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

html {
  background: #020617;
  overscroll-behavior: none;
}

body {
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  background: linear-gradient(160deg, #020617 0%, #0a1628 20%, #0f2044 45%, #091a3a 70%, #020617 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.3); border-radius: 3px; }
