/* ===== SOCIAL SECTION ===== */
.server-social-section {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: rgba(10, 15, 30, 0.4);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: none;
}

.server-social-section .social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.server-social-section .social-btn i {
  font-size: 18px;
}

.server-social-section .social-btn span {
  display: inline-block;
}

/* Discord */
.server-social-section .social-btn.discord {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.1));
  color: #5865f2;
  border-color: rgba(88, 101, 242, 0.3);
}

.server-social-section .social-btn.discord:hover {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
  border-color: #5865f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

/* WhatsApp */
.server-social-section .social-btn.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.1));
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.server-social-section .social-btn.whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(37, 211, 102, 0.2));
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* YouTube */
.server-social-section .social-btn.youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.1));
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.3);
}

.server-social-section .social-btn.youtube:hover {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.2));
  border-color: #ff0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Facebook */
.server-social-section .social-btn.facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(24, 119, 242, 0.1));
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}

.server-social-section .social-btn.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(24, 119, 242, 0.2));
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

/* Responsive Social */
@media (max-width: 767px) {
  .server-social-section {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 15px;
  }
  
  .server-social-section .social-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .server-social-section .social-btn i {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .server-social-section {
    padding: 10px 12px;
  }
  
  .server-social-section .social-btn {
    padding: 9px 10px;
    font-size: 11px;
  }
  
  .server-social-section .social-btn i {
    font-size: 15px;
  }
}

/* Discord Chat Container */
.discord-chat-container {
  background: rgba(10, 15, 30, 0.4);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: none;
  padding: 0;
  overflow: hidden;
}

.discord-chat-container iframe {
  display: block;
  border: none;
  background: rgba(17, 24, 39, 0.6);
}

/* Responsive Discord Chat - Ocultar en mobile */
@media (max-width: 991px) {
  .discord-chat-container iframe {
    height: 500px !important;
  }
}

@media (max-width: 767px) {
  /* Ocultar el módulo completo de Discord Chat en mobile */
  .page-title:has(+ .discord-chat-container),
  .discord-chat-container {
    display: none !important;
  }
}

