:root {
  --bg: #0a0a0a;
  --bg-alt: #080808;
  --card: #111111;
  --card-hover: #1a1710;
  --border: #262218;
  --text: #ffffff;
  --text-dim: #a8a8a8;
  --gold: #f4d03f;
  --gold-dim: #b8963a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

h1, .link-title, .cta {
  font-family: "Cinzel", Georgia, serif;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(244, 208, 63, 0.10), transparent 60%);
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 20px 40px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.avatar {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: 0 0 0 6px rgba(244, 208, 63, 0.08);
}

.hero h1 {
  margin: 20px 0 2px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.handle {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15px;
}

.tagline {
  margin: 0 auto 6px;
  max-width: 420px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}

.motto {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.bio {
  margin: 0 auto 28px;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta:hover { transform: translateY(-1px); }

.cta.primary {
  background: var(--gold);
  color: #0a0a0a;
}

.cta.primary:hover {
  background: #ffe27a;
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.link-card:hover {
  background: var(--card-hover);
  border-color: rgba(244, 208, 63, 0.4);
  transform: translateY(-1px);
}

.link-card.featured {
  border-color: rgba(244, 208, 63, 0.55);
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.10), var(--card));
}

.link-card.featured .link-title {
  color: var(--gold);
}

.icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: var(--text);
}

.icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.link-card.youtube .icon svg { fill: #ff4d4d; }
.link-card.instagram .icon svg { fill: #e1478a; }
.link-card.tiktok .icon svg { fill: #22e0d6; }
.link-card.facebook .icon svg { fill: #5b8cff; }
.link-card.linkedin .icon svg { fill: #5b8cff; }
.link-card.whatsapp .icon svg { fill: #3ddc97; }

.link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.link-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.link-sub {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow {
  flex: none;
  color: var(--text-dim);
  font-size: 16px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.link-card:hover .arrow {
  transform: translateX(2px);
  color: var(--gold);
}

.footer {
  margin-top: 48px;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
}
