@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");
@import url("./layout.css");
@import url("./components.css");

:root {
  --bg: #09061b;
  --bg-soft: #151030;
  --surface: rgba(29, 20, 58, 0.82);
  --surface-strong: rgba(38, 26, 74, 0.96);
  --surface-muted: rgba(25, 18, 50, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 60px rgba(4, 0, 18, 0.46);
  --shadow-soft: 0 20px 40px rgba(9, 4, 30, 0.34);
  --text: #f7f1ff;
  --text-soft: #d8cafa;
  --muted: #a89bcf;
  --muted-2: #8f83bb;
  --primary: #905cff;
  --primary-2: #ff4fd8;
  --accent: #ffb84d;
  --accent-2: #52f2ff;
  --danger: #ff6e9f;
  --danger-2: #ff8c5a;
  --success: #2ee6a6;
  --success-2: #52f2ff;
  --dark: #26174f;
  --dark-2: #130c2d;
  --nav-bg: rgba(77, 47, 142, 0.72);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 16%, rgba(144, 92, 255, 0.34), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 79, 216, 0.3), transparent 20%),
    radial-gradient(circle at 80% 84%, rgba(82, 242, 255, 0.18), transparent 18%),
    linear-gradient(145deg, #060311 0%, #120a29 38%, #1d1241 72%, #0a0720 100%);
  position: relative;
  animation: pageFade 0.35s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -180px;
  background: linear-gradient(145deg, rgba(255, 79, 216, 0.22), rgba(144, 92, 255, 0.08));
}

body::after {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -20px;
  background: linear-gradient(145deg, rgba(82, 242, 255, 0.16), rgba(80, 148, 255, 0.06));
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

canvas {
  max-width: 100%;
}

button,
a {
  color: inherit;
  outline: 0 !important;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button:active,
a:active {
  transform: scale(0.98);
}

input,
button,
select,
textarea {
  font: inherit;
}

.text-center {
  text-align: center;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  50% {
    opacity: 0.25;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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