body {
  background: #111827;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.hidden { display: none; }
.input-field {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #1f2937;
  border: 1px solid #374151;
  color: white;
}
.btn-primary {
  background-color: #4f46e5;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: fit-content;
  cursor: pointer;
  color: white;
  border: none;
}
.btn-primary:hover { opacity: 0.9; }
.btn-small { padding: 0.25rem 0.5rem; font-size: 0.875rem; }
.btn-nav { padding: 0.5rem 1rem; border-radius: 0.5rem; cursor: pointer; color: white; background: #374151; border: none; margin-right: 1rem; }
.role-btn { flex: 1; padding: 0.5rem; border-radius: 0.5rem; color: white; font-weight: bold; cursor: pointer; }
.role-btn:hover { opacity: 0.9; }
.btn-interact { background: #4f46e5; padding: 0.5rem 1rem; border-radius: 0.5rem; cursor: pointer; border: none; color: white; }
.btn-interact:hover { opacity: 0.9; }

.glass { background: rgba(255,255,255,0.05); backdrop-filter: blur(6px); }

.avatar-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.avatar-placeholder {
  background: linear-gradient(90deg, #6a5df6, #ff6fb5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  font-size: 2rem;
}

.avatar-card {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
  margin: 0.5rem;
}
.avatar-card:hover { background: rgba(255,255,255,0.1); }

.metric-box {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: bold;
  margin: 0.5rem;
}

.logo-topo {
  text-align: center;
  padding: 12px;
  z-index: 2;
}

.logo-topo img {
  width: 100px;
  height: auto;
}

.container {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.avatars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.avatar-card {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.20); /* zoom out slightly */
}

.avatar-description {
  color: #d1d5db;
  font-size: 0.9rem;
  text-align: justify;
  margin-top: 0.75rem;
}

.google-btn {
  display: flex;
  align-items: center; 
  justify-content: center;
  background-color: white;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: fit-content;
  gap: 0.5rem;
  cursor: pointer;
}

.google-btn img { 
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  background-color: #f7f8f8;
}
