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

.app {
  min-height: 100vh;
  background: #0a0e27;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #00d4ff;
  --primary-dark: #00a8cc;
  --secondary: #7c3aed;
  --accent: #ff6b6b;
  --success: #10b981;
  --dark: #0a0e27;
  --dark-light: #1a1f3a;
  --dark-card: #141829;
  --text: #e1e8f0;
  --text-secondary: #8b92a8;
  --border: rgba(255, 255, 255, 0.1);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}
