@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;600&display=swap');

/* 
   BIO MODULE - ISOLATED STYLES (Refined: HIT Select Premium)
*/

:root {
  --bio-bg-page: #0a0a0a;
  /* Fundo da Página */
  --bio-card-container: #0d0d0d;
  /* O Card Principal Central */
  --bio-btn-bg: #1a1a1a;
  /* Fundo dos botões */
  --bio-btn-hover: #262626;
  --bio-border-color: #282828;
  --bio-text-primary: #ffffff;
  --bio-text-secondary: #aaaaaa;
  --bio-accent: #d9c893; /* Champagne Gold */
}

body.bio-body, .bio-listing-body {
  background-color: var(--bio-bg-page);
  color: var(--bio-text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Imagem de fundo etérea abstrata */
  background-image: linear-gradient(rgba(0, 56, 101, 0.45), rgba(0, 0, 0, 0.85)), url('../../assets/img/hit-bg-abstract.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
}

/* O "Card" Flutuante Central */
.bio-container {
  width: 100%;
  max-width: 550px;
  background-color: var(--bio-card-container);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  border: 1px solid #1f1f1f;
}

/* Header */
.bio-header {
  margin-bottom: 2.5rem;
}

.bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 16px; /* Squircle style */
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(217, 200, 147, 0.1);
}

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bio-verified-badge {
  color: #3b82f6;
  font-size: 1.1rem;
}

.bio-description {
  color: var(--bio-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Lista de Links */
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bio-link-card {
  display: flex;
  align-items: center;
  background-color: var(--bio-btn-bg);
  border: 1px solid var(--bio-border-color);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bio-link-card:hover {
  background-color: var(--bio-btn-hover);
  border-color: var(--bio-accent);
  transform: translateY(-1px);
}

.bio-link-icon {
  width: 42px;
  height: 42px;
  background-color: var(--icon-bg, #1a1a1a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.bio-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.bio-link-content {
  flex-grow: 1;
  min-width: 0;
}

.bio-link-title {
  display: block;
  font-weight: 600;
  color: var(--bio-text-primary);
  font-size: 0.93rem;
  margin-bottom: 0px;
}

.bio-link-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--bio-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bio-link-action {
  color: #444;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* vCard Button */
.bio-vcard-btn {
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  background: transparent;
  border: 1px solid var(--bio-border-color);
  color: var(--bio-text-secondary);
  border-radius: 12px;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.bio-vcard-btn:hover {
  background: var(--bio-btn-bg);
  color: #fff;
  border-color: var(--bio-accent);
}

/* Footer Minimalista */
footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.3;
}

.bio-logo {
  width: 150px;
  height: auto;
}

.bio-logo-large {
  width: 200px;
  height: auto;
}