@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

:root {
  --background: #000000;
  --foreground: #ffffff;
  --primary: #1e90ff; /* Dodger Blue */
  --primary-hover: #187bcd;
  
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Gradients based on uizard.io analysis */
  --gradient-hero: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
  --glow-color: rgba(30, 144, 255, 0.5);
}

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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}
