/* Base styles, variables, and resets */

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

:root {
  --bg: #040404;
  --bg2: #0d1b3f;
  --bg3: #0a2472;
  --surface: rgba(13, 27, 63, 0.6);
  --surface2: rgba(13, 27, 63, 0.8);
  --border: rgba(215, 148, 46, 0.1);
  --border2: rgba(215, 148, 46, 0.2);
  --accent: #0e3b9e;
  --accent2: #c67d3b;
  --accent3: #f4b942;
  --text: #ffffff;
  --text2: #c5d4e8;
  --text3: rgba(197, 212, 232, 0.5);
  --glow: rgba(14, 59, 158, 0.15);
  
  /* Extended palette */
  --primary-color: #0a2472;
  --secondary-color: #0e3b9e;
  --accent-color: #c67d3b;
  --accent-light: #f4b942;
  --success-color: #c67d3b;
  --danger-color: #ff6b6b;
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

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

a:visited {
  color: inherit;
}

body {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(14, 59, 158, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(198, 125, 59, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
