/**
 * Global CSS reset and base styles
 * Copyright © 2026 JoinIn AI, Inc. All rights reserved.
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #0A0E1A;
  color: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] body {
  background: #F8FAFC;
  color: rgba(0, 0, 0, 0.92);
}
