:root {
  --bg: #000;
  --text: #fff;
  --accent: #ff2d55;
  --header-height: 56px;
  --bottom-nav-height: 56px;
  --side-width: 260px;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  padding-bottom: var(--bottom-nav-height);
}
