/* ------------------------------
   CyberCampus CTF - Final Fixed V2
   Force Hover Zoom + Static BG
------------------------------ */

/* --- Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Orbitron:wght@600;700;900&family=Russo+One&family=Poppins:wght@400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');

* { box-sizing: border-box; }

body {
  background-color: #050a10;
  color: #e6edf3;
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-x: hidden;
  
  /* Background Statique (Performance Max) */
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(0, 245, 192, 0.06), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(0, 136, 255, 0.06), transparent 40%);
  
  background-attachment: fixed;
  background-size: 100% 100%;
  
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* Scrollbar Custom */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050a10; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #00f5c0; }

::selection { background: rgba(0, 245, 192, 0.99); color: #000; }

p, li, span, input, textarea {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  color: #94a3b8;
}

/* ========================================================
   NAVBAR
======================================================== */
.navbar {
  position: sticky;
  top: 15px;
  width: 96%;
  max-width: 1500px;
  margin: 0 auto;
  
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 35px;
  z-index: 2000; /* Toujours au dessus */
  transition: all 0.3s ease;
}

.brand-link { 
  display: flex; align-items: center; gap: 15px; 
  text-decoration: none; height: 100%;
}

.logo {
  height: 42px; width: auto; 
  filter: drop-shadow(0 0 5px rgba(0,245,192,0.4));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.title {
  font-family: 'Orbitron', sans-serif; 
  font-weight: 800; font-size: 1.4rem; color: #fff; 
  letter-spacing: 1.5px; margin: 0; line-height: 1; padding-top: 2px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.3s ease;
}

.brand-link:hover .logo { transform: rotate(-5deg) scale(1.1); }
.brand-link:hover .title { transform: scale(1.05); text-shadow: 0 0 15px rgba(0, 245, 192, 0.6); }

.nav-center { display: flex; align-items: center; gap: 5px; flex: 1; justify-content: center; }

.nav-cat {
  position: relative; text-decoration: none;
  color: #cbd5e1; font-weight: 600; font-size: 1.05rem;
  padding: 10px 20px; border-radius: 50px;
  transition: all 0.3s ease; display: flex; align-items: center; margin-right: 25px;
}

.nav-cat:hover {
  color: #fff; background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 8px rgba(0,245,192,0.6); transform: translateY(-1px);
}

.nav-cat:not(:last-child)::after {
  content: "/"; position: absolute; right: -20px; top: 50%; 
  transform: translateY(-50%) skew(-15deg); color: rgba(0, 245, 192, 0.2); 
  font-weight: 400; font-size: 0.9em; pointer-events: none;
}
.nav-cat:last-child { margin-right: 0; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-btn {
  padding: 8px 16px; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 6px; border: none; cursor: pointer;
  white-space: nowrap;
}
.nav-btn.cyan {
  background: #00f5c0; color: #050a10 !important;
  box-shadow: 0 0 10px rgba(0,245,192,0.15);
}
.nav-btn.cyan:hover {
  background: #fff; box-shadow: 0 0 20px rgba(0,245,192,0.4); transform: translateY(-2px);
}
.nav-btn.dashboard { background: linear-gradient(90deg, #6a00ff, #b043ff); color: white !important; }
.nav-btn.orange { background: linear-gradient(90deg, #ff8a00, #ff3d00); color: white !important; }


/* ── PAGINATION ── */
.ac-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ac-page-btn {
  padding: 9px 20px;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 10px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ac-page-btn:hover:not(.disabled) {
  background: rgba(0,245,192,0.1);
  border-color: rgba(0,245,192,0.3);
  color: #00f5c0;
}

.ac-page-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ac-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ac-page-num {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--bord);
  background: var(--surf);
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ac-page-num:hover {
  background: rgba(0,245,192,0.08);
  border-color: rgba(0,245,192,0.2);
  color: #00f5c0;
}

.ac-page-num.active {
  background: rgba(0,245,192,0.15);
  border-color: rgba(0,245,192,0.4);
  color: #00f5c0;
  font-weight: 700;
}

.ac-page-dots {
  color: #334155;
  font-size: 0.85rem;
  padding: 0 4px;
}

/* ========================================================
   LAYOUT & TITRES
======================================================== */
.page-wrapper {
  display: flex; flex-direction: column; align-items: center;
  margin: 90px auto 0 auto; 
  padding: 0 20px 40px 20px;
  width: 100%; max-width: 1400px;
}

.animated-title, h1, h2 {
  font-family: 'Russo One', sans-serif; font-size: 2.4rem; text-align: center;
  color: #fff; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px;
  background: -webkit-linear-gradient(90deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 245, 192, 0.15));
}
.page-wrapper p { text-align: center; max-width: 700px; margin: 0 auto 30px auto; font-size: 1rem; }


/* ========================================================
   CARDS & HOVER (CORRECTIF FORCE)
======================================================== */

/* 1. État de base (Défini explicitement) */
.challenge-card, .home-block, .info-card, .card, form, .section-large {
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  
  /* Initialisation propre des transforms pour éviter les bugs */
  transform: scale(1) translateY(0);
  position: relative; /* Nécessaire pour le z-index au hover */
  
  /* Transition Lisse */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #cbd5e1;
}

/* 2. HOVER EFFECT (Zoom visible + Effets discrets) */
.challenge-card:hover, 
.home-block:hover, 
.info-card:hover, 
.card:hover {
  /* Zoom modéré + Légère montée */
  transform: scale(1.01) translateY(-2px) !important;
  
  /* Effets visuels MINIMALISTES */
  background: rgba(15, 23, 36, 0.8); 
  border-color: rgba(0, 245, 192, 0.35); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 245, 192, 0.08); 
  
  z-index: 1000;
}

/* Titres H3 dans les cartes */
.challenge-card h3, .home-block h3, .card h3, .info-card h3, form h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00f5c0; margin-top: 0;
  text-shadow: 0 0 10px rgba(0, 245, 192, 0.2);
}

/* EXCEPTION : SECTION À PROPOS 
   On annule le zoom pour elle car elle est trop large
*/
.section-large {
  max-width: 1100px !important; margin: 40px auto; text-align: center;
}
.section-large p { text-align: left; }
.section-large:hover {
  /* Zoom modéré + Légère montée */
  transform: scale(1.01) translateY(-2px) !important;
  
  /* Effets visuels MINIMALISTES */
  background: rgba(15, 23, 36, 0.8); 
  border-color: rgba(0, 245, 192, 0.35); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 245, 192, 0.08); 
  
  z-index: 1000;
}

/* EXCEPTION : FORMULAIRES DE CONNEXION 
   On évite que ça bouge quand on écrit dedans
*/
form:hover {
    transform: none !important;
}


/* --- CHALLENGES GRID --- */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  width: 100%;
  /* Padding pour éviter que le zoom ne soit coupé sur les bords */
  padding: 10px; 
}
.challenge-card { display: flex; flex-direction: column; min-height: 260px; }
.challenge-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px;
}
.challenge-points {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 159, 67, 0.1); color: #ff9f43;
  padding: 4px 8px; border-radius: 4px; border: 1px solid rgba(255, 159, 67, 0.2);
  font-weight: 700; font-size: 0.8rem;
}
.challenge-description { flex: 1; margin-bottom: 20px; font-size: 0.95rem; }
.challenge-card.solved { border-color: #10b981; }
.challenge-card.solved::after {
  content: "✓"; position: absolute; top: 15px; right: 15px;
  color: #10b981; font-weight: 900; font-size: 1.2rem;
}

/* --- BOUTONS --- */
.btn, .challenge-btn, .primary-btn, .submit-btn, .env-btn {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  width: 100%; padding: 10px 15px;
  background: linear-gradient(90deg, rgba(0, 245, 192, 0.05), rgba(0, 136, 255, 0.05));
  border: 1px solid rgba(0, 245, 192, 0.3);
  color: #00f5c0;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  border-radius: 8px; text-decoration: none;
  cursor: pointer; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}

.btn:hover, .challenge-btn:hover, .primary-btn:hover, .submit-btn:hover {
  background: linear-gradient(90deg, #00f5c0, #0088ff);
  color: #050a10; border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 245, 192, 0.4);
  transform: translateY(-2px);
}

/* --- DASHBOARD STATS --- */
.stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.card { width: 200px; text-align: center; padding: 20px; }
.card h3 { font-size: 1.8rem; margin-bottom: 5px; color: #fff; } 
.card p { color: #00f5c0; font-weight: 600; font-size: 0.9rem; margin-bottom: 0; }

/* --- FORMULAIRES --- */
.form-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; margin-top: 30px; }
form { width: 100%; max-width: 380px; padding: 30px; }
.input-field, .flag-input {
  width: 100%;
  background: #050a10; border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 12px; border-radius: 8px;
  margin-top: 5px; margin-bottom: 15px;
  font-family: 'Inter', sans-serif; transition: 0.3s;
}
.input-field:focus {
  outline: none; border-color: #00f5c0;
  box-shadow: 0 0 0 2px rgba(0,245,192,0.1); background: rgba(0, 245, 192, 0.02);
}
form .btn.primary-btn { padding: 10px 20px; font-size: 0.9rem; }

/* --- HOME BLOCKS --- */
.home-containers { display: flex; flex-wrap: wrap; justify-content: center; gap: 35px; margin-top: 40px; }
.home-block { width: 300px; text-align: left; }

/* --- CHALLENGE DETAIL --- */
.challenge-detail { width: 95%; max-width: 1300px; }
.challenge-content-layout {
  display: grid; grid-template-columns: 3fr 2fr; gap: 25px;
  width: 100%; margin-top: 20px; align-items: start;
}
.challenge-info-block {
  background: rgba(15, 23, 36, 0.6); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px; padding: 30px; height: 100%; backdrop-filter: blur(10px);
}
.challenge-info-block p { text-align: left; margin: 0; }
.challenge-action-block { display: flex; flex-direction: column; gap: 20px; }
.action-card {
  background: rgba(15, 23, 36, 0.6); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px; padding: 20px; backdrop-filter: blur(10px);
}
.env-btn-wrapper { margin-top: 15px; }
.flag-form { display: flex; flex-direction: column; gap: 10px; }
.flag-input-wrapper { display: flex; gap: 10px; }
.flag-input { margin: 0; flex: 1; }
.btn.submit-btn { width: auto; min-width: 120px; }

/* Bouton Retour */
.back-btn-container { width: 100%; display: flex; justify-content: flex-start; margin-bottom: 20px; }
.back-btn-modern {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px; color: #94a3b8; font-weight: 600; text-decoration: none;
  font-size: 0.9rem; transition: all 0.3s ease; backdrop-filter: blur(5px);
}
.back-btn-modern:hover {
  background: rgba(0, 245, 192, 0.1); border-color: rgba(0, 245, 192, 0.4);
  color: #00f5c0; transform: translateX(-5px); box-shadow: 0 0 15px rgba(0, 245, 192, 0.1);
}

/* --- NOTIFICATIONS --- */
.flash-container.top {
  position: fixed; top: 100px; left: 50%; transform: translateX(-50%); z-index: 2000;
}
.flash {
  background: rgba(5, 10, 16, 0.95); border-left: 4px solid;
  color: #fff; padding: 12px 24px; border-radius: 4px;
  margin-bottom: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  min-width: 300px; text-align: center;
}
.flash.success { border-color: #10b981; }
.flash.danger { border-color: #ef4444; }

/* --- FOOTER --- */
/* --- Footer étendu --- */
footer {
  margin-top: 80px;
  padding: 40px 20px;
  background: rgba(5, 10, 16, 0.8);
  border-top: 1px solid rgba(0, 245, 192, 0.1);
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Boîte Anti-responsabilité */
.disclaimer-box {
  background: rgba(239, 68, 68, 0.05); /* Rouge très léger */
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
}

.disclaimer-box h4 {
  color: #ef4444;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-box p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.disclaimer-box strong {
  color: #fff;
  text-decoration: underline rgba(239, 68, 68, 0.4);
}

/* Liens du bas */
.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00f5c0;
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.8rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 10px; top: 0; width: 100%; border-radius: 0; padding: 15px; }
  .nav-cat { margin-right: 0; width: 100%; justify-content: center; }
  .nav-cat:not(:last-child)::after { display: none; }
  .challenge-content-layout { grid-template-columns: 1fr; }
  .flag-input-wrapper { flex-direction: column; }
  .btn.submit-btn { width: 100%; }
  .page-wrapper { margin-top: 40px; }
}


/* ========================================================
   LEARN LIBRARY - PAGE INDEX
======================================================== */

.learn-library {
  max-width: 1400px;
}

/* Intro de la bibliothèque */
.library-intro {
  background: linear-gradient(135deg, rgba(0, 245, 192, 0.05), rgba(0, 136, 255, 0.05));
  border: 2px solid rgba(0, 245, 192, 0.2);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.intro-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.library-intro h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.library-intro p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* Catalogue de cours */
.courses-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1100px) {
  .courses-catalog {
    /* Passe à 2 colonnes sur les tablettes */
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-catalog {
    /* Passe à 1 colonne sur mobile */
    grid-template-columns: 1fr;
  }
}

/* Cartes de cours */
.course-card {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 245, 192, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: rgba(15, 23, 36, 0.9);
}

/* Ribbon de criticité */
.course-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  padding: 5px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.course-ribbon.critical {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

.course-ribbon.high {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.course-ribbon.soon {
  background: linear-gradient(135deg, #64748b, #475569);
  color: #fff;
}

/* Icône du cours */
.course-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 245, 192, 0.2));
}

.course-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.course-description {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Métadonnées du cours */
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.meta-icon {
  font-size: 1.2rem;
}

/* Tags de sujets */
.course-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.topic-tag {
  background: rgba(0, 245, 192, 0.1);
  border: 1px solid rgba(0, 245, 192, 0.3);
  color: #00f5c0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Bouton du cours */
.course-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #00f5c0, #0088ff);
  color: #050a10 !important;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.course-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 192, 0.4);
}

/* Cours à venir */
.coming-soon-card {
  opacity: 0.6;
  position: relative;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 10, 16, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  backdrop-filter: blur(3px);
}

.coming-soon-overlay span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
}

/* Section ressources */
.resources-section {
  background: rgba(106, 0, 255, 0.05);
  border: 1px solid rgba(106, 0, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.resources-section h3 {
  font-family: 'Russo One', sans-serif;
  color: #b043ff;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-link-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.resource-link-card:hover {
  background: rgba(176, 67, 255, 0.1);
  border-color: rgba(176, 67, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(176, 67, 255, 0.2);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.resource-link-card h4 {
  font-family: 'Orbitron', sans-serif;
  color: #b043ff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.resource-link-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}


/* ========================================================
   COURSE PAGE - PAGES DE COURS INDIVIDUELS
======================================================== */

.course-page {
  max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #00f5c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .separator {
  color: #64748b;
}

.breadcrumb .current {
  color: #cbd5e1;
}

/* En-tête du cours */
.course-header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}

.course-header-icon {
  font-size: 5rem;
  filter: drop-shadow(0 5px 20px rgba(0, 245, 192, 0.3));
}

.course-header-content {
  flex: 1;
}

.course-header h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.course-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-badges > span {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-critical {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-high {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-time,
.badge-level {
  background: rgba(0, 136, 255, 0.15);
  color: #0088ff;
  border: 1px solid rgba(0, 136, 255, 0.3);
}

/* Contenu du cours */
.course-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.course-section {
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px;
}

.course-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00f5c0;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 20px;
}

.course-section h3 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.course-section h4 {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.course-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #94a3b8;
}

.course-section ul {
  list-style: none;
  padding-left: 0;
}

.course-section ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #94a3b8;
  line-height: 1.7;
}

.course-section ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #00f5c0;
  font-weight: bold;
}

/* Boîtes d'information */
.info-box {
  display: flex;
  gap: 15px;
  background: rgba(0, 136, 255, 0.1);
  border-left: 4px solid #0088ff;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content strong {
  color: #0088ff;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.info-content p {
  margin: 0;
}

/* Blocs de code */
.code-block {
  background: #0a0f1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

.code-block.vulnerable {
  border-color: rgba(239, 68, 68, 0.4);
}

.code-block.safe {
  border-color: rgba(16, 185, 129, 0.4);
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
}

.code-lang {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
}

.code-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.code-block code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Showcases d'attaque */
.attack-showcase {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.attack-input {
  margin-bottom: 15px;
}

.attack-input:last-child {
  margin-bottom: 0;
}

.attack-input label {
  display: block;
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.attack-input code {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 15px;
  border-radius: 6px;
  color: #ef4444;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* Boîte d'explication */
.explanation-box {
  background: rgba(255, 159, 67, 0.05);
  border: 1px solid rgba(255, 159, 67, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.explanation-box h4 {
  color: #ff9f43;
  margin-top: 0;
  margin-bottom: 15px;
}

.explanation-box ul {
  margin-bottom: 15px;
}

.explanation-box strong {
  color: #ff9f43;
}

/* Types d'attaque */
.attack-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.attack-type-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.attack-type-card:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: translateY(-3px);
}

.attack-type-card h4 {
  color: #ef4444;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.code-snippet {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 12px;
  margin: 15px 0;
}

.code-snippet code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
  display: block;
}

/* Méthodes de protection */
.protection-method {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.method-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.method-content {
  flex: 1;
}

.method-content h3 {
  color: #10b981;
  margin-top: 5px;
}

.success-box {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 15px 20px;
  border-radius: 6px;
  margin-top: 15px;
}

.success-box strong {
  color: #10b981;
}

/* Types XSS détaillés */
.xss-types-detailed {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}

.xss-type-box {
  border: 2px solid;
  border-radius: 12px;
  padding: 25px;
}

.xss-type-box.reflected {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.xss-type-box.stored {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.3);
}

.xss-type-box.dom {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
}

.type-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.type-icon {
  font-size: 2.5rem;
}

.type-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.example-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.example-box strong {
  color: #00f5c0;
  display: block;
  margin-bottom: 8px;
}

.example-box code {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: #cbd5e1;
  margin-bottom: 10px;
  word-break: break-all;
}

/* Transformation visuelle */
.transformation-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.transform-before,
.transform-after {
  text-align: center;
}

.transform-before strong,
.transform-after strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.transform-before code {
  color: #ef4444;
}

.transform-after code {
  color: #10b981;
}

.transform-arrow {
  font-size: 2rem;
  color: #00f5c0;
  font-weight: bold;
}

/* Checklist */
.checklist {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 25px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item .check {
  color: #10b981;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.checklist-item span:last-child {
  color: #cbd5e1;
  line-height: 1.6;
}

/* CTA Challenge */
.challenge-cta {
  background: linear-gradient(135deg, rgba(0, 245, 192, 0.1), rgba(0, 136, 255, 0.1));
  border: 2px solid rgba(0, 245, 192, 0.3);
  border-radius: 20px;
  padding: 45px;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Russo One', sans-serif;
  color: #fff;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-icon {
  font-size: 2rem;
}

.challenge-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(90deg, #00f5c0, #0088ff);
  color: #050a10 !important;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 245, 192, 0.3);
}

.challenge-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 245, 192, 0.5);
}

/* Navigation entre cours */
.course-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(0, 245, 192, 0.1);
  border-color: rgba(0, 245, 192, 0.3);
  color: #00f5c0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .course-header {
    flex-direction: column;
    text-align: center;
  }
  
  .course-header-icon {
    margin: 0 auto;
  }
  
  .protection-method {
    flex-direction: column;
  }
  
  .transformation-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .transform-arrow {
    transform: rotate(90deg);
  }
  
  .course-navigation {
    flex-direction: column;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 15px;
  }
}

/* ========================================================
   HOME PAGE - NOUVELLES SECTIONS
======================================================== */

/* Section Comment ça marche */
.how-it-works {
  background: linear-gradient(135deg, rgba(0, 245, 192, 0.03), rgba(0, 136, 255, 0.03));
  border: 1px solid rgba(0, 245, 192, 0.15);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.step-card {
  background: rgba(15, 23, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 245, 192, 0.3);
  box-shadow: 0 10px 30px rgba(0, 245, 192, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00f5c0, #0088ff);
  color: #050a10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 245, 192, 0.3);
}

.step-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
}

.step-card h4 {
  font-family: 'Orbitron', sans-serif;
  color: #00f5c0;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Section Statistiques */
.stats-section {
  background: rgba(106, 0, 255, 0.05);
  border: 1px solid rgba(106, 0, 255, 0.2);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.stat-box {
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 67, 255, 0.4);
  box-shadow: 0 10px 30px rgba(176, 67, 255, 0.15);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(176, 67, 255, 0.3));
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #b043ff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Section Catégories */
.categories-section {
  background: rgba(15, 23, 36, 0.4);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.category-card {
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.category-card.active {
  border-color: rgba(0, 245, 192, 0.3);
}

.category-card.active:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 245, 192, 0.5);
  box-shadow: 0 10px 30px rgba(0, 245, 192, 0.2);
}

.category-card.coming-soon {
  opacity: 0.6;
}

.category-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
}

.category-card h4 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.category-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge.available {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.category-badge.soon {
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.3);
}

/* Section CTA Final */
.final-cta {
  background: linear-gradient(135deg, rgba(0, 245, 192, 0.1), rgba(0, 136, 255, 0.1));
  border: 2px solid rgba(0, 245, 192, 0.3);
  text-align: center;
  padding: 50px 40px;
}

.cta-content-large h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.cta-content-large p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-primary {
  background: linear-gradient(90deg, #00f5c0, #0088ff);
  color: #050a10 !important;
  box-shadow: 0 8px 25px rgba(0, 245, 192, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 245, 192, 0.5);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #00f5c0 !important;
  border: 2px solid rgba(0, 245, 192, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(0, 245, 192, 0.1);
  border-color: rgba(0, 245, 192, 0.5);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .steps-container,
  .home-stats-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================================
   CHALLENGES LIST - CARTE "PROCHAINEMENT"
======================================================== */

.coming-soon-challenge {
  position: relative;
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(71, 85, 105, 0.05));
  border: 2px dashed rgba(100, 116, 139, 0.3);
  opacity: 0.85;
}

.coming-soon-challenge:hover {
  opacity: 1;
  border-color: rgba(100, 116, 139, 0.5);
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.15), rgba(71, 85, 105, 0.1));
}

.coming-soon-ribbon {
  position: absolute;
  top: 15px;
  right: -25px;
  background: linear-gradient(135deg, #64748b, #475569);
  color: #fff;
  padding: 5px 35px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.coming-soon-challenge .challenge-header h3 {
  color: #94a3b8;
}

.coming-soon-challenge .challenge-description p {
  color: #64748b;
  font-style: italic;
}

.upcoming-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.topic-badge {
  background: rgba(100, 116, 139, 0.2);
  border: 1px solid rgba(100, 116, 139, 0.4);
  color: #94a3b8;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.challenge-btn.disabled {
  background: rgba(100, 116, 139, 0.2);
  border-color: rgba(100, 116, 139, 0.3);
  color: #64748b;
  cursor: not-allowed;
  opacity: 0.6;
}

.challenge-btn.disabled:hover {
  transform: none;
  box-shadow: none;
  background: rgba(100, 116, 139, 0.2);
}

.nav-btn.dashboard { background: linear-gradient(90deg, #6a00ff, #b043ff); color: white !important; }
.nav-btn.orange { background: linear-gradient(90deg, #ff8a00, #ff3d00); color: white !important; }
.nav-btn.admin { 
  background: linear-gradient(90deg, #fbbf24, #f59e0b); 
  color: #050a10 !important; 
  font-weight: 700;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}
.nav-btn.admin:hover {
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
  transform: translateY(-2px);
}


.beta-banner {
    background: linear-gradient(90deg, #ff8c00, #ff4500);
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    font-size: 0.9rem;
    z-index: 1001; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* S'assure qu'elle est visible au départ */
}

.beta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.close-beta {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: transform 0.2s;
}

.close-beta:hover {
    transform: scale(1.2);
}

.password-container {
  position: relative;
  width: 100%;
}

.password-hint {
  color: #64748b;
  font-size: 0.8rem;
  margin: -10px 0 10px 0;
}

.password-container .input-field {
  padding-right: 45px; 
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 45%; 
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  stroke: #94a3b8; 
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.toggle-password:hover svg {
  stroke: #00f5c0; 
  filter: drop-shadow(0 0 5px rgba(0, 245, 192, 0.6));
  transform: scale(1.1);
}

.toggle-password.active svg {
  stroke: #00f5c0;
}
