/* ==========================================================================
   MoonWalk — PAGE widget: social / register card
   ========================================================================== */

.moonwalk-social {
  --moonwalk-social-card-bg: linear-gradient(135deg, rgba(26, 35, 126, 0.5) 0%, rgba(140, 29, 104, 0.3) 100%);
}

.moonwalk-social .social-section-card {
  background: var(--moonwalk-social-card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
  width: 100%;
}

/* The source overrode the shared subtitle margin inline for this card only. */
.moonwalk-social .moonwalk-social-subtitle {
  margin-bottom: 1.5rem;
}

.moonwalk-social .social-links-flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.moonwalk-social .social-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.moonwalk-social .social-icon-btn:hover {
  background: var(--gradient-blood-moon);
  transform: translateY(-3px);
  color: #fff;
}
