/* MuHost – estilos custom (Tailwind hace el resto) */

html { scroll-behavior: smooth; }

/* Scrollbar oscuro en Chromium */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #52525b; }

/* Helpers */
.glow-blue { box-shadow: 0 0 30px rgba(59, 130, 246, 0.18); }

/* Form focus accesible */
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/* Animación sutil para hovers en cards */
.card-hover { transition: all 0.2s ease; }
.card-hover:hover { transform: translateY(-2px); }
