* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  position: relative;
  overflow: hidden;
  background: #0b1020;
}

.container::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(64, 224, 208, 0.3),
      transparent 45%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(255, 105, 180, 0.22),
      transparent 50%
    ),
    radial-gradient(circle at 55% 85%, rgba(255, 215, 0, 0.18), transparent 55%);
  filter: blur(32px);
  transform: translateZ(0);
  animation: floatBg 10s ease-in-out infinite alternate;
}

@keyframes floatBg {
  from {
    transform: translate(-2%, -2%) scale(1);
  }
  to {
    transform: translate(2%, 2%) scale(1.06);
  }
}

.card {
  width: min(92vw, 460px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 55%
  );
  pointer-events: none;
}

.profile {
  text-align: center;
  padding: 28px 28px 14px;
}

.profile > img {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.profile > p {
  margin-top: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: 1.4px;
  line-height: 1;
}

.profile > i {
  display: inline-block;
  margin-top: 10px;
  font-style: normal;
  font-size: 14px;
  opacity: 0.85;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.linktree {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px 22px;
}

.linktree > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;

  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.linktree > a::after {
  content: "↗";
  opacity: 0.75;
}

.linktree > a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.linktree > a:active {
  transform: translateY(0px);
}

.linktree > a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.footer {
  padding: 0 22px 22px;
  text-align: center;
}

.footer > i {
  display: block;
  font-style: normal;
  font-size: 13px;
  opacity: 0.75;
}

@media (max-width: 360px) {
  .profile > p {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .container::before {
    animation: none;
  }
  .linktree > a {
    transition: none;
  }
}
