:root {
  --card-radius: 18px;
  --max-width: 560px;
}

/* Fundo com vibe “premium” */
body {
  min-height: 100vh;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(255, 205, 80, 0.25), transparent 60%),
    radial-gradient(700px 500px at 20% 20%, rgba(255, 120, 180, 0.18), transparent 55%),
    radial-gradient(700px 500px at 80% 40%, rgba(120, 180, 255, 0.14), transparent 55%),
    #0b0c10;
}

.page-container {
  max-width: var(--max-width);
}

/* Avatar com “glow” */
.avatar-wrap {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  padding: 6px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 206, 86, 0.9), rgba(255, 206, 86, 0.15) 55%, transparent 70%);
  box-shadow: 0 18px 60px rgba(255, 206, 86, 0.20);
  display: grid;
  place-items: center;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  background: #111;
  overflow: hidden;
}

/* Cards em imagem */
.link-card {
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.link-card:active {
  transform: translateY(0px);
}

.link-card-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer link */
.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover {
  color: #fff;

}
