/* ==============================
   FONTES & COULEURS
============================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #011406;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  color: #00ff7f;
  margin-bottom: 20px;
}

p {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/blackjack-fond.jpg') center center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,127,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #b8ffcf;
  text-shadow: 0 0 10px rgba(0,255,127,0.4);
}

.hero-title {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00ff7f;
  text-shadow: 0 0 20px rgba(0,255,127,0.6);
  margin-bottom: 30px;
}

/* Mobile : hero 80vh pour écrans <= 768px */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh !important;
  }
}

/* ==============================
   BOUTONS NÉON
============================== */
.btn-neon {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-neon.btn-green {
  background: linear-gradient(90deg, #00ff7f, #00cc66);
  box-shadow: 0 0 20px rgba(0,255,127,0.6), 0 0 40px rgba(0,255,127,0.4);
}

.btn-neon.btn-green:hover {
  background: linear-gradient(90deg, #00cc66, #00ff7f);
  box-shadow: 0 0 40px rgba(0,255,127,0.8), 0 0 60px rgba(0,255,127,0.6);
  transform: scale(1.05);
}

.btn-neon.btn-purple {
  background: linear-gradient(90deg, #bb6aff, #9933ff);
  box-shadow: 0 0 20px rgba(187,106,255,0.6), 0 0 40px rgba(187,106,255,0.4);
}

.btn-neon.btn-purple:hover {
  background: linear-gradient(90deg, #9933ff, #bb6aff);
  box-shadow: 0 0 40px rgba(187,106,255,0.8), 0 0 60px rgba(187,106,255,0.6);
  transform: scale(1.05);
}

/* ==============================
   INPUTS & TEXTAREA
============================== */
input, textarea {
  background: #011406;
  color: #fff;
  border: 1px solid #00ff7f;
  border-radius: 6px;
  padding: 10px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control:focus {
  border-color: #00ff88 !important;
  box-shadow: 0 0 8px #00ff88 !important;
  outline: none;
}

/* ==============================
   LOGO
============================== */
.logo-neon {
  filter: drop-shadow(0 0 10px #00ff7f);
}

/* ==============================
   SECTIONS
============================== */
.section-padding {
  padding: 50px 0;
}

.about, #plus-information, #contact, .advantages {
  position: relative;
  overflow: hidden;
}

/* ==============================
   ABOUT
============================== */
.about {
  padding: 60px 0;
  background-color: #011406;
  color: #fff;
}

.about::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,127,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

/* GUIDE-LIST (boutons internes) */
ul.guide-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

ul.guide-list li a {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  color: #b8ffcf;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(0, 20, 0, 0.6);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

ul.guide-list li a:hover {
  color: #fff;
  background: linear-gradient(90deg, #00ff7f, #00cc66);
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.7);
  transform: scale(1.05);
}

/* ==============================
   PLUS D'INFORMATION (violet)
============================== */
#plus-information {
  padding: 40px 0;
  color: #fff;
  background: radial-gradient(circle at center,
      rgba(128, 0, 255, 0.25) 0%,
      rgba(75, 0, 130, 0.25) 45%,
      #0a0013 100%);
}

#plus-information::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 0, 255, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

#plus-information .container {
  position: relative;
  z-index: 1;
}

#plus-information h2,
#plus-information h4,
#plus-information h5 {
  color: #bb6aff;
  text-shadow: 0 0 15px rgba(187, 106, 255, 0.6);
}

#plus-information p {
  color: #fff;
}

#plus-information img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(187, 106, 255, 0.3);
}

/* ==============================
   AVANTAGES
============================== */
.advantages {
  text-align: center;
  padding: 50px 0;
}

.advantages h2 {
  margin-bottom: 40px;
}

/* ==============================
   CONTACT
============================== */
#contact {
  padding: 80px 0;
  color: #fff;
  background: radial-gradient(circle at center,
      rgba(0, 255, 127, 0.4) 0%,
      rgba(138, 43, 226, 0.25) 50%,
      #0a0013 100%);
}

/* ==============================
   FOOTER
============================== */
footer.footer {
  background-color: #000;
  text-align: center;
  color: #fff;
  padding: 2rem 0;
}

footer.footer img {
  filter: drop-shadow(0 0 10px #00ff7f);
}

/* ==============================
   NAVBAR
============================== */
/* ==============================
   NAVBAR
============================== */
/* NAVBAR TRANSPARENTE + FLOU */
.navbar {
  background: rgba(1, 20, 6, 0.35) !important; /* Transparent + sombre */
  backdrop-filter: blur(10px);      /* BLUR */
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(0, 255, 127, 0.15);
}

/* Quand on scroll : plus opaque + glow */
.navbar.scrolled {
  background: rgba(1, 20, 6, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

/* LOGO */
.navbar-brand img {
  height: 40px;
  filter: drop-shadow(0 0 10px #00ff7f);
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* ESPACEMENT NAV */
.navbar-nav {
  gap: 1.5rem;
}

/* LIENS NAV */
.nav-link {
  color: #b8ffcf;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.2rem 0 !important;
}

/* HOVER */
.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #00ff7f;
}

/* ACTIVE */
.nav-link.active {
  color: #00ff7f !important;
  text-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f;
}

/* LINE INDICATOR (underline néon animé) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #00ff7f;
  box-shadow: 0 0 10px #00ff7f;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-neon-nav {
  padding: 12px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #00ff7f, #00cc66);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-neon-nav:hover {
  background: linear-gradient(90deg, #00cc66, #00ff7f);
  box-shadow: 0 0 25px rgba(0,255,127,0.6), 0 0 40px rgba(0,255,127,0.4);
}

.btn-neon-nav.active {
  box-shadow: 0 0 20px rgba(0,255,127,0.7);
}

/* Bouton Déconnexion rouge basé sur btn-neon-nav */
.btn-neon-red {
  padding: 6px 18px;                      /* même taille que btn-neon-nav */
  border-radius: 6px;
  background: transparent;                /* fond transparent au repos */
  border: 2px solid #ff073a;             /* bordure rouge */
  color: #ff073a;                         /* texte rouge */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover : fond rouge, texte blanc, glow rouge */
.btn-neon-red:hover {
  background: #ff073a;                    /* fond rouge au hover */
  color: #fff;                             /* texte blanc */
  box-shadow: 0 0 25px rgba(255,7,58,0.6), 0 0 40px rgba(255,7,58,0.4);
}

/* Active : glow rouge */
.btn-neon-red.active {
  box-shadow: 0 0 20px rgba(255,7,58,0.7);
}


/* Toggler burger style */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive spacing */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 1rem;
  }
  .btn-neon-nav {
    margin-top: 0.5rem;
  }
}

/* ==============================
   SECTION PLUS D'INFORMATION – VIOLET PULSANT
   ============================== */
#plus-information {
  padding: 80px 0;
  color: #fff;
  background: radial-gradient(circle at center,
      rgba(128, 0, 255, 0.25) 0%,      /* Violet clair lumineux */
      rgba(75, 0, 130, 0.25) 45%,      /* Indigo */
      #0a0013 100%                     /* Violet très foncé */
  );
  position: relative;
  overflow: hidden;
}

#plus-information::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 0, 255, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

#plus-information .container {
  position: relative;
  z-index: 1;
}

#plus-information h2,
#plus-information h4,
#plus-information h5 {
  color: #bb6aff;
  text-shadow: 0 0 15px rgba(187, 106, 255, 0.6);
  font-family: 'Orbitron', sans-serif;
}

#plus-information p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

#plus-information img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(187, 106, 255, 0.3);
}

/* Optionnel : boutons neon violet pour cohérence */
.btn-neon-violet {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #bb6aff, #8a2be2);
  box-shadow: 0 0 20px rgba(187,106,255,0.6), 0 0 40px rgba(138,43,226,0.4);
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-neon-violet:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(187,106,255,0.8), 0 0 60px rgba(138,43,226,0.6);
  background: linear-gradient(90deg, #8a2be2, #bb6aff);
}

input::placeholder,
textarea::placeholder {
  color: #00ff7f !important;  /* vert néon */
  opacity: 1 !important;
}

.subscription-highlight {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  background-color: rgba(0, 20, 0, 0.7); /* fond semi-transparent */
  color: #fff;
  border: 3px solid #bb6aff; /* bordure violet néon */
  box-shadow: 0 0 10px #bb6aff, 0 0 20px #bb6aff; /* effet lumineux */
}

.subscription-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

.inscription-gradient {
  position: relative;
  background-color: #011406; /* fond principal */
  overflow: hidden;
}

.inscription-gradient::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,127,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.inscription-gradient .container {
  position: relative;
  z-index: 1;
}


.btn-neon.btn-red {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(90deg, #ff073a, #cc032f);
  box-shadow: 0 0 20px rgba(255,7,58,0.6), 0 0 40px rgba(255,7,58,0.4);
}

.btn-neon.btn-red:hover {
  background: linear-gradient(90deg, #cc032f, #ff073a);
  box-shadow: 0 0 40px rgba(255,7,58,0.8), 0 0 60px rgba(255,7,58,0.6);
  transform: scale(1.05);
}

/* Labels des formulaires en blanc */
label {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Lien footer identique à la navbar */
.footer-link {
  color: #b8ffcf;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #00ff7f;
}

.neon-flicker {
  color: #00ff7f;
  text-shadow: 0 0 8px #00ff7f, 0 0 20px #00ff7f, 0 0 30px #00ff7f;
  animation: flicker 1.2s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 0.8; }
  94% { opacity: 0.4; }
  96% { opacity: 0.9; }
  98% { opacity: 0.5; }
}

#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* derrière tout */
  background: transparent;
}

.border-green {
  border: 1px solid #00ff7f;
  border-radius:20px;
}

.cursor-dot {
  position: fixed;
  width: 20px;           /* taille des points de la traînée */
  height: 20px;
  background: radial-gradient(circle, rgba(0,150,255,0.8) 0%, rgba(0,150,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;  /* ne bloque pas les clics */
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
}
/* Réduction automatique des titres sur mobile avec priorité */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.8rem, 5vw, 1.8rem) !important;
    word-break: keep-all !important;  /* empêche la coupure de mots */
  }
}

.status-box {
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 2px solid;
    box-shadow: 0 0 12px rgba(0, 255, 127, 0.25);
}

.success-box {
    background: rgba(0, 255, 127, 0.08);
    border-color: #00ff7f;
    color: #00ff7f;
    text-shadow: 0 0 8px rgba(0,255,127,0.5);
}

.warning-box {
    background: rgba(255, 200, 0, 0.08);
    border-color: #ffc107;
    color: #ffc107;
    text-shadow: 0 0 8px rgba(255,200,0,0.5);
}

.status-box h5 {
    font-weight: 600;
}

.btn-neon .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Blanc */
  color: #3F0954; /* Couleur de l'icône (violet sombre si tu veux garder) */
  transition: transform 0.3s ease;
  box-shadow: none; /* Suppression totale de l'ombre */
}

.btn-neon:hover .icon-circle {
  transform: translateX(4px);
  box-shadow: none; /* Aucune ombre même au hover */
}

.btn-neon-nav .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Blanc */
  color: #3F0954; /* Couleur de l'icône */
  transition: transform 0.3s ease;
  box-shadow: none; /* Pas d'ombre */
}

.btn-neon-nav:hover .icon-circle {
  transform: translateX(4px);
  box-shadow: none; /* Pas d'ombre au hover */
}

.btn-neon-violet .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Blanc */
  color: #3F0954; /* Couleur de l'icône (violet sombre) */
  transition: transform 0.3s ease;
  box-shadow: none; /* Suppression de l'ombre */
}

.btn-neon-violet:hover .icon-circle {
  transform: translateX(4px);
  box-shadow: none; /* Aucune ombre au hover */
}

/* S’applique seulement lorsque la navbar est en version hamburger */
@media (max-width: 991.98px) {
    .deconnexion {
        margin-top:10px; /* mt-5 */
    }
}
