:root {
  --bg0: #08080e;
  --bg1: #0e0e18;
  --bg2: #141420;
  --bg3: #1a1a2e;
  --line: rgba(139, 92, 246, 0.15);
  --accent: #8b5cf6;
  --accent2: #7c3aed;
  --accent-bright: #a78bfa;
  --accent-dim: rgba(139, 92, 246, 0.2);
  --accent-glow: rgba(139, 92, 246, 0.5);
  --text: #f0f0f5;
  --muted: #8888a0;
  --glow: rgba(139, 92, 246, 0.35);
  --font: "Outfit", "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Bebas Neue", "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  background: var(--bg0);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
a:hover {
  opacity: 0.9;
  color: #c4b5fd;
}

input,
textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
}
