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

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --surface2: #1c1c28;
  --border: #2a2a3a;
  --accent: #7c3aed;
  --accent-light: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.4);
  --text: #f1f0f7;
  --text-muted: #7a7a9a;
  --danger: #dc2626;
  --danger-glow: rgba(220, 38, 38, 0.3);
  --success: #16a34a;
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100dvh;
  overscroll-behavior: none;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 40px 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 0;
}