html {
color:#c6a87f;
font-family:Verdana,Sans-serif;
font-size:11px;
}

* {
  cursor: url('cursor.cur'), auto !important;
}

body {
  background-color: #2e2a24; /* Marron foncé avec une légère teinte verte */
  background-image: url('../img/fond.webp');
  background-repeat: no-repeat;
  background-position: center center;
  cursor: url('cursor.cur'), auto;
  background-attachment: fixed;
  background-size: cover;
}


#headerBg {
height:200px;
}

#blockMain {
width:1200px;
margin:0 auto;
}




/* Animation de slide + fade */
@keyframes slideFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Animation pour les cercles de stats */
.circle-stat {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideFadeDown 1s ease-out forwards;
  animation-delay: 0.5s; /* Décalage pour que ça arrive après la navbar */
}

/* Si plusieurs cercles : petit décalage pour chacun */
.circle-stat:nth-child(1) {
  animation-delay: 0.5s;
}
.circle-stat:nth-child(2) {
  animation-delay: 0.7s;
}
.circle-stat:nth-child(3) {
  animation-delay: 0.9s;
}


.navbar {
	display: block !important; /* On écrase Bootstrap ici */
    max-width: 1000px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 100, 20, 0.8);
    box-shadow: 0 2px 10px rgba(255, 100, 20, 0.2);
    overflow: visible; /* Corrige le problème de dropdown */
    position: fixed;
}

/* Le vrai fond noir qui couvre toute la largeur sans débordement */
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.navbar-inner {
    max-width: 1183px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: auto 1fr auto; /* Logo | Menu | Langue + Connexion */
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideFadeDown 1s ease-out forwards;
}

.mon-style-texte {
  font-weight: bold;
  color: #ffcc00;
  font-size: 16px;
   text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  /* etc. */
}

.mon-style-texte:hover,
.mon-style-texte:focus {
  color: #ffcc00;
  text-shadow: 0 0 6px rgba(255, 150, 50, 0.8); /* Glow orangé léger */
  transform: scale(1.10);                      /* Petit zoom subtil */
}



.navbar-left {
   
    
	float: left;
}

.navbar-center {
    flex-grow: 0 !important;              /* Stoppe le grow imposé par Bootstrap */
    flex-shrink: 0 !important;
    display: flex !important;             /* Imposer ton flex à la place de celui de Bootstrap */
	justify-content: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-self: end; /* Bien collé à droite */
}

.navbar-nav .nav-link {
  color: #ccc;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 150, 50, 0.8); /* Glow orangé léger */
  transform: scale(1.10);                      /* Petit zoom subtil */
}


/* Lien actif ou dropdown ouvert */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid #ffffff;
}

/* Dropdown background + bordure soft glow */
.dropdown-menu {
  background-color: rgba(20, 20, 20, 1.00);                 /* Noir un peu transparent, pas trop brut */
  border: 2px solid rgba(255, 100, 20, 0.2);                /* Liseré cuivré doux */
  backdrop-filter: blur(6px);                               /* Effet glass léger : clean & classe */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);                /* Ombre soft */
  border-radius: 6px;
  overflow: hidden;                                         /* Pour que le blur soit propre */
}

/* Items */
.dropdown-menu .dropdown-item {
  color: #c6a87f;                                           /* Ton doré/marron doux pour rester dans le thème */
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
}

/* ANIMATION */
@keyframes dropdownFadeSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation on dropdown */
.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  animation: dropdownFadeSlide 0.8s ease forwards;
  animation-delay: 0.05s; /* Petit décalage pour éviter le "sec" */
  pointer-events: none; /* Pour empêcher le clic tant que pas visible */
}

/* Bootstrap ajoute automatiquement la classe .show quand le menu est ouvert */
.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  animation: dropdownFadeSlide 0.3s ease forwards;
  pointer-events: auto;
}
/* Hover effect: soulignement avec glow + fond léger */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: rgba(255, 100, 20, 0.15);               /* Fond cuivré doux */
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 150, 50, 0.7);
}

/* Optionnel : petite barre à gauche qui apparaît au hover */
.dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background-color: rgba(255, 100, 20, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-menu .dropdown-item:hover::before,
.dropdown-menu .dropdown-item:focus::before {
  opacity: 1;
}


/* Bouton Connexion / Inscription */
.navbar-nav .btn-outline-light {
  border-color: #555;
  color: #ccc;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.navbar-nav .btn-outline-light:hover,
.navbar-nav .btn-outline-light:focus {
  background-color: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

/* Petite respiration entre le bouton et les liens */
.navbar-nav .nav-item {
  margin-left: 10px;
}

.navbar-nav .nav-item:not(:last-child) {
  position: relative; /* Obligatoire pour positionner le ::after */
}

.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;               /* Ajuste la hauteur si besoin */
  bottom: 25%;
  right: -7px;
  width: 2px;
  background-color: rgba(255, 100, 20, 0.4); /* Plus visible que 0.1 */
  z-index: 1;             /* Passe devant le ::before de la navbar */
}

/* Remove border on last item */
.navbar-nav .nav-item:last-child {
  border-right: none;
}




.btn-logout {
	all: unset; /* ?? On désactive TOUS les styles Bootstrap ! */
	border: 1px solid rgba(255, 60, 60, 0.8);  /* Rouge doux mais visible */
	color: #ff4c4c;
	background-color: transparent;
	padding: 6px 14px;
	border-radius: 6px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: url('cursor.cur'), auto;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.btn-logout:hover,
.btn-logout:focus {
	background-color: rgba(180, 30, 30, 0.8); /* Fond rouge au survol */
	color: #fff;
}

.btn-login {
  all: unset;
  border: 1px solid rgba(60, 200, 100, 0.8);        /* Vert clair et doux */
  color: rgba(60, 200, 100, 0.9);                   /* Texte vert clair */
  background-color: transparent;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: url('cursor.cur'), auto;
  transition: all 0.3s ease;
}

.btn-login:hover,
.btn-login:focus {
  background-color: rgba(40, 150, 80, 0.9);        /* Vert plus foncé mais pas sombre */
  color: #fff;
}


.gold-amount {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.gold-value {
  font-weight: bold;
  color: #f9d85d;
  font-size: 1.4rem;
}

.gold-icon {
  width: 16px;
  height: 16px; 
  margin-left: 6px;
}

.account-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-account-link {
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-account-link:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: #fff;
  cursor: url('cursor.cur'), auto;
}


.account-link:hover {
  color: #ffd700;
  text-shadow: 0 0 6px #ffd700;
}


.circle-stat {
  width: 110px;
  height: 110px;
  position: relative;
  margin: 0 20px;
  background: rgba(0, 0, 0, 0.55); /* ?? Fond noir circulaire semi-transparent */
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.circle-stat.main {
  transform: translateY(-50px); /* Ajuste -20px selon la hauteur désirée */
}

/* AJOUT pour élargir le fond noir derrière la jauge */
.circle-stat::before {
    content: "";
    position: absolute;
    top: -12px;           /* Plus tu montes le chiffre, plus c’est large */
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: rgba(0, 0, 0, 0.55);  /* Opacité et couleur du fond */
    border-radius: 50%;               /* Pour que ça reste rond */
    z-index: 0;                       /* Pour que ça reste derrière le reste */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6); /* Optionnel : petit flou autour */
}

/* Pour que ton texte et ta jauge restent DEVANT le fond */
.circle-inner-text, .circular-chart {
    position: relative;
    z-index: 1;
}

.circular-chart {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.3);
  stroke-width: 2.5; /* ?? plus fin */
}

.circle {
  fill: none;
  stroke: #8B1E1E;
  stroke-width: 1.2; /* ?? plus fin */
  stroke-linecap: round;
  transition: stroke-dasharray 1.8s ease-in-out;
  
}

/* Tu peux aussi rendre les petits cercles d'une autre couleur si besoin : */
.circle-stat.secondary .circle {
  stroke: #CC6600; /* vert par exemple */
}

.circle-inner-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f9ae47;
  font-family: 'Arial', sans-serif;
}

.circle-title {
  font-size: 1.5rem;
  color: #dddddd;
  line-height: 1rem;
}

.circle-number {
  font-size: 2.1rem;
  font-weight: bold;
  transform: translateY(5px);   /* ?? 5px vers le bas, ajuste à ton goût */
}

.navbar .btn {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #fff; /* Si tu veux garder le texte blanc */
}

.circle-stat.small {
  width: 80px;
  height: 80px;
}

.circle-stat.big {
  width: 100px;
  height: 100px;
  top: -20px;
}

.circle-inner-text .circle-title {
  font-size: 1.4em;
  line-height: 1.2em; /* Ajuste cette valeur : plus c'est grand, plus l'espacement est large */
}

.circle-inner-text .circle-number {
  font-size: 1.2em;
}

.circle-stat svg {
  transform: rotate(-90deg); /* Garde le cercle qui commence en haut */
}

/* Le wrapper s'occupe de l'animation d'arrivée */
.logo-wrapper {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-90%);
  opacity: 0;
  animation: slideInLeft 1.7s ease-out forwards;
  z-index: 10;
}

/* Animation de déplacement sur le wrapper */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-90%);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

/* L'image elle-même gère le scale au hover */
.logo-position {
  transition: transform 0.3s ease;
}

.logo-position:hover {
  transform: scale(1.1);
}




/* Style du bloc Connexion */
.login-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 100, 20, 0.6); /* Cuivré */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.2);
    padding: 20px;
    color: #ddd;
    max-width: 300px;
    backdrop-filter: blur(4px);
}

/* Titre avec une bordure en bas */
.login-card h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #f9ae47;
    border-bottom: 1px solid rgba(255, 100, 20, 0.6);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Labels */
.login-card label {
    color: #ccc;
    font-weight: bold;
}

/* Inputs */
.login-card input[type="text"],
.login-card input[type="password"] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 100, 20, 0.3);
    color: #fff;
    border-radius: 5px;
    padding: 8px 12px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.login-card input[type="text"]:focus,
.login-card input[type="password"]:focus {
    border-color: rgba(255, 100, 20, 0.8);
    outline: none;
}

.login-card .btn-login {
    background-color: transparent;
    color: #90ee90;
    border: 2px solid #90ee90;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 8px 12px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}


.login-card .btn-login:hover {
    background-color: #90ee90;
    color: #1a1a1a;
    box-shadow: 0 0 8px rgba(144, 238, 144, 0.6);
}


/* Bloc État du serveur */
.server-status-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 100, 20, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.2);
    padding: 20px;
    color: #ddd;
    max-width: 300px;
    margin: 20px auto;
    backdrop-filter: blur(4px);
}

/* Titre du bloc */
.server-status-card h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #f9ae47;
    border-bottom: 1px solid rgba(255, 100, 20, 0.6);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
	font-size: 15px;
}

/* Table stylée */
.server-status-card table {
    width: 100%;
    border-collapse: collapse;
}

.server-status-card td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.server-status-card tr:last-child td {
    border-bottom: none;
}

/* Coloration des statuts (exemple : "Online" ou "Offline") */
.server-status-card .online {
    color: #90ee90;
    font-weight: bold;
}

.server-status-card .offline {
    color: #ff4c4c;
    font-weight: bold;
}

/* Hover row effect (optionnel) */
.server-status-card tr:hover td {
    background-color: rgba(255, 100, 20, 0.1);
    transition: background-color 0.3s ease;
}


/* Bloc Discord style */
.discord-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 100, 20, 0.6); /* Cuivré */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.2);
    padding: 20px;
    color: #ddd;
    max-width: 300px;
    margin: 20px auto;
    backdrop-filter: blur(4px);
    text-align: center;
}

/* Titre */
.discord-card h4 {
    font-size: 1.3rem; /* Réduit un peu la taille */
    white-space: nowrap; /* Forcé à rester sur une seule ligne */
    overflow: hidden;
    text-overflow: ellipsis; /* Si jamais ça déborde encore */	
    color: #f9ae47;
    border-bottom: 1px solid rgba(255, 100, 20, 0.6);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* Titre */
.discord-card h4 {
    color: #7289da;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(114, 137, 218, 0.6);
}

/* Texte */
.discord-card p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Bouton Discord stylé */
.discord-card .btn-discord {
    background: linear-gradient(45deg, #7289da, #99aaff);
    color: #1a1a1a;
    border: 2px solid #7289da;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(114, 137, 218, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover avec glow et petit effet d'ondulation */
.discord-card .btn-discord::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    transition: left 0.5s ease;
}

.discord-card .btn-discord:hover::before {
    left: 100%;
}

.discord-card .btn-discord:hover {
    background: linear-gradient(45deg, #99aaff, #7289da);
    color: #fff;
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.8);
}



#footerBg {
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 2px solid rgba(255, 100, 20, 0.6); /* Cuivré */
    box-shadow: 0 -2px 10px rgba(255, 100, 20, 0.2);
    color: #bfa27a; /* Beige chaud / sable doux */
    text-align: center;
    padding: 30px 15px;
    backdrop-filter: blur(4px);
}

/* Logo / Accueil (si tu as un logo) */
#footerBlizz img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 100, 20, 0.5));
    transition: transform 0.3s ease;
}

#footerBlizz img:hover {
    transform: scale(1.1);
}

/* Liens navigation */
.footer-link {
    color: #f9ae47; /* Doré/cuivré clair */
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 100, 20, 0.8);
}

/* Séparateurs */
#footerNav .text-muted {
    color: rgba(255, 100, 20, 0.5);
    font-weight: bold;
}

/* Copyright */
#footerCopy {
    font-size: 0.85rem;
    color: #bfa27a; /* Même teinte que le texte général */
    margin-top: 20px;
    letter-spacing: 0.5px;
}

#footerCopy strong {
    color: #f9ae47;
}

/* Animation douce */
#footerBg {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes footerFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}




/* === Corps de page === */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* === Alert / Offre spéciale === */
.alert {
    background: rgba(30, 25, 20, 0.85);
    border: 2px solid rgba(255, 100, 20, 0.6);
    color: #bfa27a;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(255, 100, 20, 0.2);
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.alert h3 {
    color: #f9ae47;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alert .btn {
    background-color: transparent;
    border: 2px solid #f9ae47;
    color: #f9ae47;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.alert .btn:hover {
    background-color: #f9ae47;
    color: #1a1a1a;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.8);
}

/* === Cards actu === */
.card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 100, 20, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.2);
    padding: 20px;
    color: #ddd;
    margin: 20px auto;
    backdrop-filter: blur(4px);
}

.card-header {
    border-bottom: 1px solid rgba(255, 100, 20, 0.4);
    padding: 20px;
}

.card-header h2 {
    color: #f9ae47;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header p {
    color: #bfa27a;
}

.card-header .btn {
    background-color: transparent;
    border: 2px solid #f9ae47;
    color: #f9ae47;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-header .btn:hover {
    background-color: #f9ae47;
    color: #1a1a1a;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.8);
}

/* === News items === */
.news-item h3 {
    color: #f9ae47;
    text-transform: uppercase;
    margin-top: 15px;
}

.news-item p {
    color: #bfa27a;
}

.news-item img {
    border: 2px solid rgba(255, 100, 20, 0.4);
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(255, 100, 20, 0.3);
    max-width: 80%;
}

/* === Badges countdown (offre spéciale) === */
.alert .badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(255, 100, 20, 0.8);
    color: #fff;
}

.btn-download {
    position: relative;
    display: inline-block;
}

.btn-download img {
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease; /* pour fluidifier sans keyframes si tu veux */
}

.btn-download:hover img {
    animation: bounce 0.6s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Texte du bouton stylisé */
.btn-download .download-text {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    color: #ffcc99; /* Orange plus lumineux */
    font-weight: bold;
    text-shadow: 
        0 0 4px rgba(244, 162, 97, 0.7),
        0 0 8px rgba(244, 162, 97, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Un peu plus large entre les lettres */
    font-size: 1.2rem;
    pointer-events: none;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    animation: pulseGlow 2s infinite;
}

/* Animation de glow léger qui pulse */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 
        0 0 4px rgba(244, 162, 97, 0.7),
        0 0 8px rgba(244, 162, 97, 0.5);
  }
  50% {
    text-shadow: 
        0 0 8px rgba(244, 162, 97, 0.9),
        0 0 12px rgba(244, 162, 97, 0.6);
  }
}

/* Hover : accentue l'effet */
.btn-download:hover .download-text {
    text-shadow: 
        0 0 10px rgba(244, 162, 97, 1),
        0 0 15px rgba(244, 162, 97, 0.8);
    color: #ffe0b3; /* Un peu plus clair au hover */
}




.lyana-promo {
  
  color: #ffcc66;
  padding: 20px;
  
  border-radius: 10px;
  max-width: 800px;

  font-family: 'Georgia', serif;
  text-align: center;
  
}

.lyana-promo h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.lyana-promo .highlight {
  color: #ff6600;
  text-shadow: 0 0 5px #ff6600;
}

.lyana-promo .intro {
  font-size: 1.5em;
  font-style: italic;
  margin-bottom: 15px;
}

.lyana-promo .intro1 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.lyana-promo ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.lyana-promo ul li {
  padding: 5px 0;
  font-size: 1.2em;
}

.lyana-promo .final-call {
  margin-top: 20px;
  font-size: 1.3em;
  font-weight: bold;
}


.gif-fade img {
  width: 150px; /* ajuste si besoin */
  display: block;
  margin: 20px auto;
  
  /* FONDU CARRÉ */
  -webkit-mask-image: 
    linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to left, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in;
          mask-image: 
    linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%),
    linear-gradient(to left, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-composite: intersect;

  /* Compatibilité et taille */
  -webkit-mask-size: 50% 50%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}












/* === Cards actu === */
.slider_card {
    margin: -20px auto;
}


.mmo-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
  border: 2px solid rgba(255, 100, 20, 0.6);
  border-radius: 12px;

}

.slides {
  display: flex;
  transition: transform 0.7s ease-in-out;
  /* PAS DE WIDTH ICI !! */
}

.slide {
  width: 100%; /* Obligatoire : pas min-width, mais width */
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0; /* Pour éviter que les slides se réduisent */
}

.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  
}



.slide-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f0f0f0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    width: 100%;                /* ? Ce qu'il te manque */
    max-width: 900px;           /* ? Optionnel si tu veux une limite */
}


.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 140px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;                   /* ? C'est ça qui manque */
    max-width: 800px;              /* Tu peux garder ou augmenter si tu veux */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.slide-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: -20px;
}

.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-controls button {
  pointer-events: all;
  background-color: transparent;       /* Plus de fond */
  border: none;                        /* Pas de bordure */
  color: rgba(244, 162, 97, 1);        /* Flèches blanches */
  font-size: 2rem;
  padding: 0;                          /* Pas de padding sinon ça fait un carré autour */
  margin: 0 10px;
  cursor: url('cursor.cur'), auto;
  transition: color 0.3s ease;         /* Animation douce sur la couleur si tu veux */
}


.slider-controls button:hover {
  color: rgba(244, 162, 97, 1);             /* Déjà présent ? garde-le */
  transform: scale(1.2);                    /* ?? Petit zoom sur la flèche */
  transition: color 0.3s ease, transform 0.3s ease; /* Ajout du transform dans la transition */
}


/* === Dots positionnés séparément === */
.dots {
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
  display: flex;
  gap: 8px;
  z-index: 5; /* Bien au-dessus du fond */
}

.dots span {
  width: 8px;
  height: 8px;
  background-color: rgba(244, 162, 97, 0.3);                    /* Cuivré léger */
  border: 1px solid rgba(244, 162, 97, 0.7);                     /* Fine bordure cuivrée */
  border-radius: 2px;                                            /* Carré avec un tout petit arrondi */
  cursor: url('cursor.cur'), auto;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.dots span.active {
  background-color: rgba(244, 162, 97, 1);                       /* Cuivré plein pour actif */
  box-shadow: 0 0 5px rgba(244, 162, 97, 0.8);                   /* Glow léger autour du point actif */
  transform: scale(1.3);                                         /* Zoom léger sur l'actif */
}


.dots span.active {
  background-color: rgba(244, 162, 97, 1);
  box-shadow: 0 0 8px rgba(244, 162, 97, 0.8);
}



.download-btn {
    border-color: rgba(244, 162, 97, 0.7);                  /* Cuivré doux */
    color: rgba(244, 162, 97, 0.85);                        /* Texte cuivré mais pas trop vif */
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 6px rgba(244, 162, 97, 0.3);           /* Glow très léger */
    border-width: 2px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
}

.download-btn:hover {
    background-color: rgba(244, 162, 97, 0.15);             /* Léger fond cuivré translucide */
    color: rgba(244, 162, 97, 1);                           /* Cuivré plus affirmé au hover */
    box-shadow: 0 0 12px rgba(244, 162, 97, 0.5);           /* Glow un peu plus marqué sans être agressif */
}

























.table-event {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b1b1f;
  box-shadow: 0 0 20px rgba(255, 145, 77, 0.2);
  border: 1px solid rgba(255, 145, 77, 0.3);
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.table-event thead {
  background-color: #2a2a30;
}

.table-event th {
  padding: 15px;
  text-align: center;
  color: #ff914d;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 145, 77, 0.3);
  letter-spacing: 1px;
}

.table-event td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 145, 77, 0.15);
  transition: background-color 0.3s ease;
}

.table-event tbody tr:hover {
  background-color: rgba(255, 145, 77, 0.08);
  cursor: url('cursor.cur'), auto;
}

.table-event tbody tr:nth-child(even) {
  background-color: #222228;
}

.table-event tbody tr:nth-child(even):hover {
  background-color: rgba(255, 145, 77, 0.08);
}

.table-event td:first-child {
  font-weight: bold;
  color: #ff914d;
}

@media (max-width: 768px) {
  .table-event th, .table-event td {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.accordion-button {
    font-size: 1.2rem; /* Augmente légèrement la taille des questions */
}

.accordion-body {
    font-size: 1.1rem; /* Augmente aussi les réponses pour plus de lisibilité */
    line-height: 1.6;  /* Un peu plus d'espacement entre les lignes = plus agréable à lire */
}

.faq-intro {
    font-size: 1.15rem;       /* Un peu plus grand */
    line-height: 1.6;         /* Plus d'air entre les lignes */
    color: #f0f0f0;           /* Bien lisible, sans être trop blanc flash */
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 8px rgba(244, 162, 97, 0.4); /* Un léger glow cuivré/orangé */
}


/* Supprime outline sur toutes les cibles possibles */
body .ui-autocomplete .ui-menu-item-wrapper:focus,
body .ui-autocomplete .ui-menu-item:focus,
body .ui-autocomplete .ui-menu-item-wrapper.ui-state-active:focus,
body .ui-autocomplete .ui-menu-item.ui-state-active:focus,
body .ui-autocomplete .ui-menu-item-wrapper:focus-visible,
body .ui-autocomplete .ui-menu-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

body .ui-autocomplete *:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


/* On cible uniquement le container autocomplete avec un sélecteur précis */
body .ui-autocomplete {
    background-color: #2c2c2c !important;           /* Fond sombre */
    border: 1px solid #555 !important;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7) !important;
    border-radius: 8px !important;
    padding: 5px 0 !important;
    z-index: 9999 !important;
}

/* Item de la liste */
body .ui-autocomplete .ui-menu-item {
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #ccc !important;                         /* Texte gris clair */
    cursor: url('cursor.cur'), auto;
    font-family: 'Arial', sans-serif !important;
}

/* Hover + active avec orange doux et glow */
body .ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
body .ui-autocomplete .ui-menu-item-wrapper:hover {
    background-color: #a04000 !important;     /* Orange foncé doux */
    color: #fff !important;
    border-radius: 5px !important;
    outline: none !important;                /* Supprime le contour bleu */

}

/* Ajoute ça pour être sûr que focus ne laisse rien traîner */
body .ui-autocomplete .ui-menu-item-wrapper:focus {
    outline: none !important;
}



/* Scrollbar */
body .ui-autocomplete::-webkit-scrollbar {
    width: 8px;
}
body .ui-autocomplete::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

/* Animation douce à l'ouverture */
body .ui-autocomplete {
    animation: fadeIn 0.2s ease-in-out !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Style général dark pour tous les champs input */
body input {
  background-color: #2c2c2c !important;
  color: #ccc !important;
  border: 1px solid #555 !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-family: 'Arial', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Glow orange au focus */
body input:focus {
  outline: none !important;
  border-color: #e67e22 !important;
  box-shadow: 0 0 8px rgba(230, 126, 34, 0.7) !important;
}

/* Placeholder en gris clair */
body input::placeholder {
  color: #aaa !important;
  opacity: 1;
}

/* Style spécifique pour les champs dans une input-group */
body .input-group > input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

/* Et le bouton dans une input-group */
body .input-group > .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Correction des styles d'autocomplétion (Chrome, Edge, Brave...) */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: #2c2c2c !important;
  -webkit-box-shadow: 0 0 0 1000px #2c2c2c inset !important;
  box-shadow: 0 0 0 1000px #2c2c2c inset !important;
  color: #ccc !important;
  caret-color: #ccc !important;
  font-family: 'Arial', sans-serif !important;
  border: 1px solid #555 !important;
  border-radius: 8px !important;
  transition: background-color 5000s ease-in-out 0s !important;
}



body .input-group > .btn {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}



/* Corrige table-success pour ton thème dark */
.table-success {
    background-color: #e67e22 !important;  /* Orange doux, comme ton hover */
    color: #fff !important;               /* Texte blanc */
}

/* Facultatif : ajoute une légère ombre ou un effet glow */
.table-success td {
    color: #fff !important;
}

.table-success:hover {
    background-color: #d35400 !important;  /* Un peu plus foncé au survol si tu veux */
}

/* Override Bootstrap table-success pour ton thème dark */
.table-success {
    background-color: #d35400 !important;  /* Orange foncé fantasy */
    color: #fff !important;
}

.table-success td {
    color: #fff !important;
}

.table-success:hover {
    background-color: #a04000 !important;  /* Plus foncé au survol */
}

.list-group-item.bg-dark {
    background-color: transparent !important;
}

.bg-dark1 {
    background-color: transparent !important;
    --bs-bg-opacity: 1 !important; /* Même si Bootstrap utilise l'opacité */
}

.footer-message {
    color: #e67e22; /* Ton orange doux */
    font-size: 14px;
    margin-top: 20px;
    display: block;
    text-align: center;
    font-family: 'Arial', sans-serif;
    opacity: 0.85;
}

.privacy-intro {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 30px 0;
    color: #e67e22; /* Orange doux */
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c2c2c;
    color: #ccc;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
    z-index: 9999;
    display: none; /* Masqué au départ */
    max-width: 400px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

.cookie-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c2c2c;
    color: #ccc;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
    z-index: 9999;
    display: none; /* Masqué au départ */
    max-width: 400px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
}

.cookie-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.badge {
    font-size: 0.95rem;     /* plus gros que le 0.75rem par défaut */
    padding: 0.5em 0.9em;   /* plus d’espace intérieur */
    border-radius: 0.6rem;  /* arrondi plus doux */
    font-weight: 600;       /* texte un peu plus gras */
}

.account-list-wrapper {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff8c42;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(255, 140, 66, 0.2);
}

.account-item {
    color: #fff;
    background-color: rgba(33, 33, 33, 0.8);
    margin: 6px 0;
    padding: 10px 0;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-item:hover {
    background-color: #3b2c1a;
    color: #ffa94d;
    cursor: url('cursor.cur'), auto;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

#emailStep2 {
  display: none;
}

input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  border-color: #e67e22 !important;
  box-shadow: 0 0 8px rgba(230, 126, 34, 0.7) inset, 0 0 8px rgba(230, 126, 34, 0.7) !important;
  background-color: #2c2c2c !important;
  -webkit-text-fill-color: #ccc !important;
  caret-color: #ccc !important;
}

input:-webkit-autofill {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  border-color: #e67e22 !important;
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.5), 0 0 8px rgba(230, 126, 34, 0.7) !important;
  background-color: #2c2c2c !important;
  -webkit-text-fill-color: #ccc !important;
  caret-color: #ccc !important;
}

table.table tr.highlight-editing td {
    background-color: #a8e6a1 !important;
    transition: background-color 0.5s ease;
}

