/* ========== Boutique FiveM — Styles personnalisés ========== */

/* Glassmorphism & thème dark gaming */
.glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.glass-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn-neon {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  transition: all 0.3s ease;
}

.btn-neon:hover {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}

.tab-active {
  border-bottom: 2px solid #8b5cf6;
  color: #a78bfa;
}

.input-glow:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* Modale auth : panels */
.auth-panel.hidden {
  display: none !important;
}
