/* Social Connect Modal Styles */
.social-connect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-connect-overlay.active {
  display: flex;
  opacity: 1;
}

.social-connect-modal {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.social-connect-overlay.active .social-connect-modal {
  transform: scale(1) translateY(0);
}

.social-connect-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(148, 163, 184, 0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.social-connect-close:hover {
  background: rgba(148, 163, 184, 0.2);
  color: #475569;
  transform: scale(1.1);
}

.social-connect-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.social-connect-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-connect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.social-connect-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-connect-icon:hover::before {
  opacity: 1;
}

.social-connect-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-connect-icon.instagram {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-connect-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-connect-icon.discord {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.social-connect-message {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.social-connect-countdown {
  font-weight: 600;
  color: #E4405F;
  font-size: 1.1rem;
}

.social-connect-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-connect-cancel {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #64748b;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.social-connect-cancel:hover {
  background: rgba(148, 163, 184, 0.15);
  color: #475569;
  transform: translateY(-1px);
}

.social-connect-cancel.got-it-btn {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.social-connect-cancel.got-it-btn:hover {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .social-connect-modal {
    padding: 2rem 1.5rem 1.5rem;
    max-width: 340px;
  }
  
  .social-connect-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .social-connect-icons {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .social-connect-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .social-connect-message {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .social-connect-countdown {
    font-size: 1rem;
  }
  
  .social-connect-cancel {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Animation for countdown pulse */
@keyframes countdownPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.social-connect-countdown {
  animation: countdownPulse 1s ease-in-out infinite;
}
