/* Mais Esports — Bio (links.maisesports.com.br)
   Identidade canônica do site (Blackhole/acessa):
   fundo #121212 · verde #00ed5f · Roboto */

:root {
  --bg: #121212;
  --surface: #171717;
  --surface-hover: #1f1f1f;
  --border: #292929;
  --border-strong: #3a3a3a;
  --fg: #e9edf2;
  --fg-muted: #a2a2a2;
  --accent: #00ed5f;
  --accent-ink: #08160d;
  --radius: 14px;
  --maxw: 480px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 18px 24px;
  /* leve halo verde no topo, bem sutil (o site é sóbrio) */
  background-image: radial-gradient(120% 60% at 50% -10%, rgba(0, 237, 95, 0.10), transparent 60%);
  background-repeat: no-repeat;
}

.bio {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 auto;
}

.bio__loading { color: var(--fg-muted); font-size: 14px; margin-top: 48px; }

/* ---------- Header ---------- */
.head { display: flex; flex-direction: column; align-items: center; text-align: center; }

.avatar {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(0, 237, 95, 0.12);
  overflow: hidden;
}
.avatar img { width: 64%; height: 64%; object-fit: contain; display: block; }

.name {
  margin-top: 16px;
  font-size: 24px; font-weight: 900; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 7px;
}
.name .verify { color: var(--accent); display: inline-flex; }
.name .verify svg { width: 19px; height: 19px; display: block; }

.handle { margin-top: 3px; color: var(--fg-muted); font-size: 14px; font-weight: 500; }

.bio-text {
  margin-top: 14px;
  max-width: 360px;
  color: #cfd4da;
  font-size: 14.5px; line-height: 1.5;
}

/* ---------- Social row ---------- */
.socials {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 22px 0 26px;
}
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  transition: transform .12s ease, border-color .12s ease, color .12s ease, background .12s ease;
}
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; display: block; }

/* ---------- Links ---------- */
.links { width: 100%; display: flex; flex-direction: column; gap: 12px; }

.link {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  font-size: 15.5px; font-weight: 500;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.link:hover { background: var(--surface-hover); border-color: var(--border-strong); transform: translateY(-1px); }
.link__icon { font-size: 18px; line-height: 1; width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 22px; }
.link__icon--brand svg { width: 21px; height: 21px; fill: currentColor; display: block; }
.link__label { flex: 1; }
.link__chev { color: var(--fg-muted); transition: transform .12s ease; }
.link:hover .link__chev { transform: translateX(2px); color: var(--fg); }

/* CTA principal (primeiro link em destaque) — botão verde do site */
.link--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.link--featured .link__chev { color: var(--accent-ink); }
.link--featured:hover { background: #00ff67; border-color: #00ff67; }

/* ---------- Footer ---------- */
.foot {
  margin-top: 32px; padding-top: 18px;
  color: #6b6b6b; font-size: 12px; letter-spacing: .02em;
}
.foot strong { color: var(--fg-muted); font-weight: 700; }

/* ---------- Banner AO VIVO ---------- */
.live {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0, 237, 95, 0.16), rgba(0, 237, 95, 0.06));
  border: 1px solid rgba(0, 237, 95, 0.55);
  color: var(--fg);
  text-decoration: none;
  box-shadow: 0 0 22px -6px rgba(0, 237, 95, 0.35);
  transition: transform .12s ease, box-shadow .12s ease;
}
.live:hover { transform: translateY(-1px); box-shadow: 0 0 26px -4px rgba(0, 237, 95, 0.5); }
.live__dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #ff3b3b; flex: 0 0 11px;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
  animation: live-pulse 1.6s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}
.live__txt { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.live__txt strong { font-size: 13px; font-weight: 900; letter-spacing: .06em; }
.live__txt small { color: var(--fg-muted); font-size: 12.5px; margin-top: 2px; }
.live__cta {
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  padding: 7px 13px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
}

/* ---------- Embeds de vídeo ---------- */
.video { width: 100%; margin-top: 22px; }
.video:first-of-type { margin-top: 26px; }
.video__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--fg-muted);
  margin: 0 2px 10px;
}
.video__title::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.video__frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (min-width: 520px) {
  .avatar { width: 112px; height: 112px; }
  .name { font-size: 26px; }
}
