body {
  background: #62b0f5;
  padding: 40px;
  font-family: 'Courier', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.profile-card {
  background: #f4faff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #e5e7eb;
}

.bio {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.6;
}

.description {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.6;
}

/* All hyperlinks: bold, no underline */
a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* LinkedIn link colour */
.bio a[href*="linkedin"] {
  color: #0A66C2;
}

/* Email link colour */
.bio a[href^="mailto"] {
  color: #ec5a59;
}

.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.follow-btn {
  background: #ec5a59;
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 9999px;
  cursor: pointer;
  font-family: 'Courier', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}

.follow-btn:hover {
  background: #d94443;
  transform: translateY(-1px);
}

#brand_icon {
  margin-bottom: 20px;
  display: block;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
  background: white;
  padding: 16px;
}

/* ── Responsive / mobile ─────────────────────────────────── */

/* Make the brand logo scale down gracefully */
#brand_icon {
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  body {
    padding: 20px 16px;
  }

  /* Brand logo: never wider than the viewport */
  #brand_icon {
    width: min(300px, 85vw);
  }

  .profile-card {
    padding: 20px 16px;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .follow-btn {
    width: 100%;
    max-width: 240px;
  }
}