/* =============================================================================
   SOCIAL LINKTREE LAYOUT
   ============================================================================= */

#social-overlay,
#tools-overlay {
  background-color: #000 !important;
}



#social-linktree-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px 300px 20px;
}

/* Profile Header */
.social-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.social-profile-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  image-rendering: pixelated;
  /* Matching the pixel art aesthetic */
}

.social-profile-name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-white);
  margin: 0 0 5px 0;
}

.social-profile-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  margin: 0;
  line-height: 1.4;
}

/* Icon Links (Instagram, TikTok, Telegram) */
.social-icon-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon-link {
  color: var(--color-white);
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  transform: scale(1.2);
  color: #3b7a61;
}

/* Large Link Buttons */
.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 30%;
  min-width: 350px;
}

.social-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background-color: #3b7a61;
  /* The requested green */
  color: #fff;
  text-decoration: none;
  /* Slightly rounded as per screenshot */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  border: none;
}

.social-link-btn:hover {
  transform: translateY(-2px);
  background-color: #4a9477;
  box-shadow: 0 6px 20px rgba(59, 122, 97, 0.3);
}

.social-link-btn:active {
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  #social-linktree-container {
    /* Space for the top header buttons on mobile */
  }

  .social-profile-name {
    font-size: 1.5rem;
  }
}