/* ============================================
   B-SIDE - Base Styles (Reset e Globali)
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  background: var(--bg-main);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

audio {
  display: none;
}
