/* ============================================================
   BT GAMES — Reset & Base (tema claro)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  background: var(--bg-root);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
a { color: var(--orange); text-decoration: none; transition: opacity var(--t-fast); }
a:hover { opacity: 0.75; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(27,47,94,0.25); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* Focus */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: var(--r-xs); }
