@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: #130220;
  --bg-deep: #0c0115;
  --bg-soft: #24103d;
  --surface: rgba(63, 38, 102, 0.92);
  --surface-strong: #4d2c79;
  --surface-muted: rgba(88, 55, 136, 0.82);
  --border: rgba(214, 202, 255, 0.1);
  --border-soft: rgba(214, 202, 255, 0.06);
  --shadow: 0 28px 60px rgba(2, 0, 10, 0.42);
  --shadow-soft: 0 20px 40px rgba(2, 0, 10, 0.3);
  --text: #f6f1ff;
  --text-soft: #ded2ff;
  --muted: #b7a8d7;
  --muted-2: #8e7ab4;
  --primary: #c3cf00;
  --primary-2: #e5ef34;
  --accent: #9f7cff;
  --accent-2: #7e56ff;
  --danger: #ff6d8f;
  --danger-2: #ff8467;
  --success: #6df7be;
  --success-2: #33d69a;
  --dark: #2f134e;
  --dark-2: #1b0a2f;
  --nav-bg: rgba(72, 40, 118, 0.92);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 22px;
  --space-xl: 28px;
}

* {
  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);
  line-height: 1.45;
  background:
    radial-gradient(circle at top left, rgba(197, 214, 13, 0.1), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(155, 113, 255, 0.2), transparent 18%),
    radial-gradient(circle at 18% 100%, rgba(255, 109, 143, 0.12), transparent 18%),
    linear-gradient(180deg, #130220 0%, #11011d 42%, #0b0114 100%);
  position: relative;
  animation: pageFade 0.35s ease;
}

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

body::before {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -130px;
  background: rgba(195, 207, 0, 0.12);
}

body::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 32px;
  background: rgba(126, 86, 255, 0.18);
}

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;
}

p {
  line-height: 1.6;
}

.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);
  }
}
