/* src/styles/global.css */
* {
  box-sizing: border-box;
}

:root {
  --font-family: "Inter", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
  --mono-font-family: "Fira Code", "Hack", Menlo, Monaco, "Lucida Console", "Liberation Mono", "Courier New", monospace;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}

#root {
  width: 100%;
  height: 100%;
}

code, pre {
  font-family: var(--mono-font-family);
}

/* src/styles/animations.css */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px #f6821f33;
  }

  50% {
    box-shadow: 0 0 50px #f6821f66;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}
