/* 
 * CAT-SPEAK UNIFIED BUTTON SYSTEM
 * Architecture: Senior Frontend
 */

:root {
  --neon-green: #D6FF2A;
  --neon-green-hover: #bce600;
  --dark-bg: #121212;
  --glass: rgba(255, 255, 255, 0.1);
  --radius: 12px;
}

/* 1. BOUTON PRIMAIRE (Le gros bouton d'action) */
.btn-primary,
button[type="submit"],
.cta-pulse {
  background: var(--neon-green) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: var(--radius) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(214, 255, 42, 0.3) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-pulse:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(214, 255, 42, 0.5) !important;
  background: var(--neon-green-hover) !important;
}

/* 2. BOUTON SECONDAIRE (Connexion, Info) */
.btn.ghost,
.authbtn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}

.btn.ghost:hover,
.authbtn:hover {
  border-color: var(--neon-green) !important;
  color: var(--neon-green) !important;
  background: rgba(214, 255, 42, 0.05) !important;
}

/* 3. BOUTON DÉSACTIVÉ */
.btn:disabled,
button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  filter: grayscale(1) !important;
}

/* 4. BOUTON ICONE (Thème, Chat) */
.iconbtn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.iconbtn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* 5. OVERRIDES SPECIFIQUES */
/* Corrige le bouton "Commencer" du pricing */
.pricing-grid .btn {
  width: 100%;
  margin-top: 15px;
}