/* ============================================
   Mini Game Bay - Reset & Base Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; }
html, body { overscroll-behavior: none; -webkit-overflow-scrolling: touch; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden;
  transition: var(--transition);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--accent-primary); text-decoration: none; }
a:hover { color: var(--accent-secondary); }
h2 { color: var(--text-primary); margin-bottom: 0.5rem; }
h3 { color: var(--text-primary); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }