:root {
  --bg: #0b0b10;
  --bg-panel: #11131a;
  --bg-soft: #171a22;
  --bg-elevated: #1d2029;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f7f7fb;
  --text-soft: rgba(255, 255, 255, 0.68);
  --text-dim: rgba(255, 255, 255, 0.42);
  --accent-start: #ff8a00;
  --accent-end: #ff5a3d;
  --accent-violet: #7a5cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 157, 0, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(56, 103, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom center, rgba(255, 119, 0, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02)),
    #0b0b10;
  color: var(--text);
  font-family: "Inter", "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.14), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(69, 102, 255, 0.12), transparent 24%),
    radial-gradient(circle at 65% 70%, rgba(0, 72, 255, 0.08), transparent 18%);
  filter: blur(10px);
  z-index: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  border: 0;
  background: none;
}

textarea,
input {
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
}
