:root {
  color-scheme: dark;
  --bg: #070b16;
  --surface: rgba(13, 22, 39, 0.84);
  --surface-strong: rgba(16, 26, 46, 0.92);
  --text: #f4f8ff;
  --muted: #b8c6dc;
  --accent: #7dd3fc;
  --accent-alt: #c4b5fd;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 18% 10%, rgba(125, 211, 252, 0.16), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(200, 146, 253, 0.12), transparent 16%),
    radial-gradient(circle at 48% 78%, rgba(115, 197, 178, 0.14), transparent 18%),
    linear-gradient(180deg, #070b16 0%, #0d1526 40%, #05080f 100%);
  overflow: hidden;
}

.background-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 16%, rgba(125, 211, 252, 0.18), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(192, 132, 252, 0.16), transparent 18%),
    radial-gradient(circle at 34% 72%, rgba(113, 205, 182, 0.24), transparent 18%),
    radial-gradient(circle at 60% 52%, rgba(255, 255, 255, 0.06), transparent 12%);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(520px, 100%);
  padding: 50px 42px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(15, 25, 43, 0.94), rgba(13, 20, 35, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px);
  position: relative;
  isolation: isolate;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  z-index: -1;
}

.card::before {
  width: 240px;
  height: 240px;
  top: -72px;
  right: -60px;
  background: rgba(125, 211, 252, 0.16);
}

.card::after {
  width: 220px;
  height: 220px;
  bottom: -72px;
  left: -48px;
  background: rgba(196, 181, 253, 0.14);
}

.avatar-container {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.avatar-ring {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 28px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 4rem);
  line-height: 1.04;
}

.subtitle {
  margin: 24px 0 36px;
  color: rgba(236, 244, 255, 0.8);
  line-height: 1.8;
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 16px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #7dd3fc 0%, #c4b5fd 100%);
  box-shadow: 0 18px 44px rgba(125, 211, 252, 0.24);
}

.button.secondary {
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.discord {
  color: white;
  background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
  box-shadow: 0 18px 44px rgba(88, 101, 242, 0.24);
}

@media (max-width: 600px) {
  .card {
    width: 100%;
    padding: 36px 24px;
    border-radius: 32px;
  }

  .avatar-ring {
    width: 92px;
    height: 92px;
  }

  h1 {
    font-size: 2.55rem;
  }
}
