body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
}

/* Trait élégant de séparation */
.elegant-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 40px auto;
  position: relative;
}

.divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #4F46E5 20%, 
    #6366F1 50%, 
    #4F46E5 80%, 
    transparent 100%
  );
  position: relative;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.divider-line::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(79, 70, 229, 0.3) 0%, 
    rgba(99, 102, 241, 0.5) 50%, 
    rgba(79, 70, 229, 0.3) 100%
  );
  filter: blur(2px);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .elegant-divider {
    width: 90%;
    margin: 30px auto;
  }
  
  /* Titre OxyZen dans le ciel procédural sur mobile */
  h1 {
    position: absolute !important;
    top: 15px !important;
    right: 200px !important;
    color: rgb(17, 209, 235) !important;
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-size: 18px !important;
    z-index: 50 !important;
    text-align: right !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
  }
  
  /* Sous-titre "Version Bêta" sous le titre - MOBILE UNIQUEMENT */
  h1 + p {
    position: absolute !important;
    top: 60px !important;
    left: 30px !important;
    z-index: 49 !important;
    text-align: right !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Canvas sans marge pour que le titre soit dans le ciel */
  #canvas {
    margin-top: 0 !important;
  }

  /* Bouton "Explorez l'île" plus bas sur mobile */
  .button {
    top: 60% !important; /* Descendu de 50% à 60% */
  }

  /* Flèches transparentes sur mobile */
  .arrow-left, .arrow-right {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 36px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    z-index: 40 !important;
    pointer-events: none !important;
    font-family: Arial, sans-serif !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
  }

  .arrow-left {
    left: 20px !important;
  }

  .arrow-right {
    right: 20px !important;
  }
}

body.espace-open {
  overflow: hidden;
}

/* Navigation par onglets */
.tab-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-family: century gothic;
  font-size: 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: #333;
}

.tab-btn.active {
  background: #007bff;
  color: white;
}

.tab-btn:hover {
  background: rgba(0, 123, 255, 0.1);
}

.button {
  background-color: transparent;
  color: black;
  border: solid black 2px;
  border-radius: 5px;
  font-size: 25px;
  font-family: century gothic;
  text-decoration: none;
  list-style-type: none;
  padding: 10px 16px;
  display: inline-block;
  /* rester centré dans la section ciel sans bouger au scroll */
  position: absolute;
  left: 35%;
  top: 60%;  /* Remonté de 25% à 15% */
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 1;
}

.button:hover {
  color: aqua;
}

.hamburger {
  height: auto; /* Hauteur automatique basée sur le contenu */
  min-height: 200px; /* Hauteur minimum */
  max-height: 80vh; /* Hauteur maximum pour ne pas dépasser l'écran */
  width: 250px;
  position: fixed;
  z-index: 1000;
  top: 60px; /* Juste en dessous de l'icône hamburger (20px + 40px de marge) */
  right: -260px;
  background-color: rgb(255, 255, 255, 0.80); /* Blanc plus transparent (75% au lieu de 85%) */
  backdrop-filter: blur(5px); /* Effet de flou pour plus de modernité */
  padding: 20px 0; /* Padding réduit en haut et bas */
  transition: right 0.3s ease;
  border-radius: 15px; /* Coins arrondis pour plus de style */
  overflow: hidden; /* Évite que le contenu dépasse */
}

.hamburger a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px; /* Augmenté de 18px à 22px pour plus de lisibilité */
  font-family: Script MT Bold;
  color: black;
  transition: 0.3s;
}

.hamburger a:hover {
  color: aqua;
}

.hamburger ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hamburger li {
  margin: 12px 0; /* Espacement de 15px au-dessus et en-dessous de chaque lien */
}

.hamburger.active {
  right: 0;
}

#openBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  display: inline-block;
  cursor: pointer;
}

.hamburger .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  text-decoration: none;
  display: none;
}

.hamburger-icon {
  display: inline-block;
  width: 35px;
  height: 24px;
  position: relative;
}

.hamburger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: black;
  border-radius: 2px;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

.hamburger-icon span:nth-child(1) {
  top: 0;
}
.hamburger-icon span:nth-child(2) {
  top: 10px;
}
.hamburger-icon span:nth-child(3) {
  top: 20px;
}

.hamburger-icon.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger-icon.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* removed old .hamburger-icon-cross rules in favor of .hamburger-icon.is-active */

.tab-content {
  position: absolute;
  top: 50px; /* en dessous du hamburger */
  left: 10%;
  width: 80%;
  max-height: 80%;
  background: rgba(255,255,255,0.95);
  overflow-y: auto;
  padding: 20px;
  display: none; /* caché par défaut */
  z-index: 10;
  border-radius: 10px;
}
.tab-content.active {
  display: block;
}

h1,
p {
  position: relative;
}

h1 {
  color: rgb(17, 209, 235);
  font-family: Georgia, "Times New Roman", Times, serif;
  position: fixed;
  top: 1px;
  left: 10%;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
  color: black;
  position: fixed;
  top: 75px;
  left: 150px;
  z-index: 1000;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0; /* Correction : canvas en arrière-plan */
  left: 0;
}

main {
  width: 100vw;
  height: 100vh;
}

#canvas-plage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; /* Canvas en arrière-plan */
  pointer-events: none;
}

#canvas-mer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#canvas-rocket {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
  pointer-events: none;
}

img {
  width: 400px;
  height: 400px;
  margin-top: 300px; /* Espace de 50px au-dessus de l'image */
  display: block; /* Pour que le margin-top fonctionne correctement */
  margin-left: auto; /* Centrer l'image horizontalement */
  margin-right: auto; /* Centrer l'image horizontalement */
}
/* -------------------------------------------------------

/* Style spécifique à chaque page html hors index.html */

/* Page en-savoir-plus.html (pas de classe spécifique) */
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main img {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main video {
  width: 800px !important; /* Augmenté de 600px à 800px */
  height: 450px !important; /* Hauteur fixe pour le format 16:9 */
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  object-fit: cover !important; /* Remplit le conteneur sans déformer */
  max-height: 600px !important; /* Hauteur maximum */
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main p span {
  font-weight: bold !important;
  font-size: 1.2em !important;
  color: #007bff !important;
}

/* Styles pour le contenu À propos avec animation oxygène */

body.apropos-page main .propos-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%);
  border-radius: 20px;
  z-index: -1;
  animation: oxygen-flow 4s ease-in-out infinite;
}

body.apropos-page main .oxygen-title {
  color: #4F46E5;
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(79, 70, 229, 0.2);
  position: relative;
}

body.apropos-page main .oxygen-text {
  font-size: 1.2em;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
  position: relative;
}

body.apropos-page main .oxygen-word {
  position: relative;
  display: inline-block;
  color: #06B6D4 !important;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: default;
}

/* Effet de particule d'oxygène */
body.apropos-page main .oxygen-word::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, 
    rgba(79, 70, 229, 0.8) 0%, 
    rgba(99, 102, 241, 0.6) 40%, 
    transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
}

/* Effet de bulles d'oxygène */
body.apropos-page main .oxygen-word::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: rgba(79, 70, 229, 0.6);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 11;
}

/* Animation de flux d'oxygène */
@keyframes oxygen-flow {
  0%, 100% {
    opacity: 0.3;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: rotate(180deg);
  }
}

/* Styles pour les bulles d'oxygène animées */
.oxygen-bubble {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, 
    rgba(79, 70, 229, 0.8) 0%, 
    rgba(99, 102, 241, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .propos-content {
    padding: 25px;
    margin: 20px auto;
  }
  
  body.apropos-page main .oxygen-title {
    font-size: 2em;
  }
  
  body.apropos-page main .oxygen-text {
    font-size: 1.1em;
  }
}

/* Styles pour les images avec texte à côté */
body.apropos-page main .image-with-text {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  margin-bottom: 20px !important;
  position: relative !important;
}

body.apropos-page main .image-with-text .img-muscat-vignes {
  width: 900px !important;
  height: 300px !important;
  
}


body.apropos-page main .image-caption::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%) !important;
  border-radius: 15px !important;
  z-index: -1 !important;
  animation: oxygen-flow 4s ease-in-out infinite !important;
}

body.apropos-page main .image-caption h3 {
  color: #4F46E5 !important;
  font-size: 1.8em !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2) !important;
}

body.apropos-page main .image-caption p {
  font-size: 1.5em !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  text-align: justify !important;
  margin: 0 !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .image-with-text {
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }
  
  body.apropos-page main .image-with-text .img-muscat-vignes {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
  }
  
  body.apropos-page main .image-caption {
    padding: 20px !important;
  }
  
  body.apropos-page main .image-caption h3 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
  }
}

/* Styles pour la section Dépôt Frontignan */
body.apropos-page main .depot-section {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 30px !important;
  width: 100% !important;
}

body.apropos-page main .depot-text {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 249, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 15px !important;
  padding: 25px !important;
  margin-bottom: 30px !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(79, 70, 229, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.apropos-page main .depot-text::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%) !important;
  border-radius: 15px !important;
  z-index: -1 !important;
  animation: oxygen-flow 4s ease-in-out infinite !important;
}

body.apropos-page main .depot-text h3 {
  color: #4F46E5 !important;
  font-size: 1.8em !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2) !important;
}

body.apropos-page main .depot-text p {
  font-size: 1.5em !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  text-align: justify !important;
  margin: 0 !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .depot-text {
    padding: 20px !important;
    margin-bottom: 30px !important;
  }
  
  body.apropos-page main .depot-text h3 {
    font-size: 1.4em !important;
    margin-bottom: 15px !important;
  }
  
  body.apropos-page main .depot-text p {
    font-size: 1.2em !important;
  }
}

/* Styles pour les sections alternées */
body.apropos-page main .alternate-section {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
  padding: 0 20px !important;
}

body.apropos-page main .alternate-section.reverse {
  flex-direction: row-reverse !important;
}

body.apropos-page main .alternate-text {
  flex: 1 !important;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 249, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 15px !important;
  padding: 25px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(79, 70, 229, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

body.apropos-page main .alternate-text::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%) !important;
  border-radius: 15px !important;
  z-index: -1 !important;
  animation: oxygen-flow 4s ease-in-out infinite !important;
}

body.apropos-page main .alternate-text h3 {
  color: #4F46E5 !important;
  font-size: 1.8em !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2) !important;
}

body.apropos-page main .alternate-text p {
  font-size: 1.5em !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  text-align: justify !important;
  margin: 0 !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .alternate-section {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }
  
  body.apropos-page main .alternate-section.reverse {
    flex-direction: column !important;
  }
  
  body.apropos-page main .alternate-text {
    padding: 20px !important;
  }
  
  body.apropos-page main .alternate-text h3 {
    font-size: 1.4em !important;
    margin-bottom: 15px !important;
  }
  
  body.apropos-page main .alternate-text p {
    font-size: 1.2em !important;
  }
}

/* Carrousel pour apropos.html */
body.apropos-page main .carousel-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 20px 0 !important;
  padding: 0 20px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.apropos-page main .carousel-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  width: 100% !important;
  margin-bottom: 20px !important;
}

body.apropos-page main .carousel-img {
  object-fit: cover !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

body.apropos-page main .carousel-img:hover {
  transform: scale(1.08) translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Effet de superposition élégant */
body.apropos-page main .carousel-img::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, 
    rgba(79, 70, 229, 0.1) 0%, 
    rgba(99, 102, 241, 0.05) 50%, 
    rgba(79, 70, 229, 0.1) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  border-radius: 15px !important;
}

body.apropos-page main .carousel-img:hover::before {
  opacity: 1 !important;
}

/* Classes spécifiques pour chaque image */
body.apropos-page main .img-muscat-vignes {
  width: 600px !important;
  height: 300px !important;
}

body.apropos-page main .img-frontignan-plages {
  width: 450px !important;
  height: 300px !important;
}

body.apropos-page main .img-etangs-frontignan {
  width: 450px !important;
  height: 300px !important;
}

body.apropos-page main .img-salins-frontignan {
  width: 500px !important;
  height: 350px !important;
}

body.apropos-page main .img-depot-frontignan {
  width: 800px !important;
  height: 400px !important;
 
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .carousel-row {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  body.apropos-page main .carousel-img {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
  }
}

/* Carrousel carré 2 par ligne pour en-savoir-plus.html */
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .carousel-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 30px !important;
  margin: 40px 0 !important;
  width: 100% !important;
  max-width: 900px !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .carousel-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
  width: 100% !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .carousel-img {
  width: 350px !important;
  height: 350px !important;
  object-fit: cover !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 25px rgba(12, 240, 240, 0.966) !important;
  transition: all 0.3s ease !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .carousel-img:hover {
  transform: scale(1.05) !important;
}

/* Styles spécifiques pour chaque image de en-savoir-plus.html */
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxyzen-parc {
  width: 400px !important;
  height: 400px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxyzen-parc:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-magma-corteX {
  width: 500px !important;
  height: 600px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-magma-corteX:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-harppy-diabolo {
  width: 300px !important;
  height: 450px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-harppy-diabolo:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-nirvana {
  width: 570px !important;
  height: 400px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-nirvana:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-psychiatriX {
  width: 350px !important;
  height: 520px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-psychiatriX:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-naja-rétro {
  width: 350px !important;
  height: 520px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-naja-rétro:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-atraX-vertigo {
  width: 350px !important;
  height: 350px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-atraX-vertigo:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-gare-oxyzen {
  width: 620px !important;
  height: 460px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-gare-oxyzen:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxy-mascotte {
  width: 320px !important;
  height: 500px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxy-mascotte:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-place-simyra {
  width: 400px !important;
  height: 550px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-place-simyra:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxynéma_i {
  width: 550px !important;
  height: 400px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-oxynéma_i:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-usines-vertes {
  width: 600px !important;
  height: 450px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(12, 224, 231, 0.938) !important;
}
body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-usines-vertes:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .img-carburant:hover {
  width: 400px !important;
  height: 550px !important;
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(12, 224, 231, 0.938) !important;
}

body:not(.index-page):not(.apropos-page):not(.partenaires-page) main .button {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 20px 0 !important;
}

/* Page apropos.html */
body.apropos-page main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
}

body.apropos-page main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body.apropos-page main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

body.apropos-page main .button {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 20px 0 !important;
}

/* Game Actions Container - Caché par défaut */
.game-actions-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    transition: all 0.3s ease;
}

.game-actions-container.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Social Hub Container - Caché par défaut */
.social-hub-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: none;
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    transition: all 0.3s ease;
}

.social-hub-container.active,
.social-hub-container:not(.hidden) {
    display: block;
}

.social-hub-container.hidden {
    display: none;
}

/* HUD Actions Button */
.hud-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.hud-action-btn {
    background: rgba(79, 195, 247, 0.2);
    border: 1px solid rgba(79, 195, 247, 0.5);
    border-radius: 8px;
    padding: 8px 12px;
    color: #4fc3f7;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hud-action-btn:hover {
    background: rgba(79, 195, 247, 0.3);
    border-color: rgba(79, 195, 247, 0.8);
    transform: scale(1.05);
}

/* Page partenaires.html */
body.partenaires-page main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
  font-size: 22px !important;
}

body.partenaires-page main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body.partenaires-page main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

body.partenaires-page main .button {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 20px 0 !important;
}

body.partenaires-page main img {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}

/* Container pour les partenaires côte à côte avec scroll horizontal */
body.partenaires-page main .partenaires-container {
  position: relative !important;
  width: 100% !important;
  max-width: 1340px !important;
  margin: 40px auto !important;
  overflow: hidden !important;
  padding: 20px 60px 20px 20px !important;
}

body.partenaires-page main .partenaires-scroll {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  padding: 20px 0 !important;
  scrollbar-width: thin !important;
  scrollbar-color: #007bff #f1f1f1 !important;
}

body.partenaires-page main .partenaires-scroll::-webkit-scrollbar {
  height: 8px !important;
}

body.partenaires-page main .partenaires-scroll::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 10px !important;
}

body.partenaires-page main .partenaires-scroll::-webkit-scrollbar-thumb {
  background: #04f2fafd !important;
  border-radius: 10px !important;
}

body.partenaires-page main .partenaires-scroll::-webkit-scrollbar-thumb:hover {
  background: #009eb3 !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.partenaire-item {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  body.apropos-page main .carousel-img {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
  }
}

/* Bouton de scroll flèche */
body.partenaires-page main .scroll-btn {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, #00e1ff, #0056b3) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.partenaires-page main .scroll-btn:hover {
  background: linear-gradient(135deg, #00e1ff, #004085) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

body.partenaires-page main .scroll-btn:active {
  transform: translateY(-50%) scale(0.95) !important;
}

/* Ajustement pour les partenaires dans le scroll */
body.partenaires-page main .partenaire-item {
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform 0.3s ease !important;
}

body.partenaires-page main .partenaire-item:hover {
  transform: translateY(-10px) !important;
}

/* Styles spécifiques pour chaque image */
body.partenaires-page main .img-lafarge {
  width: 250px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid #5dff35 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(53, 255, 53, 0.2) !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-lafarge:hover {
  box-shadow: 0 8px 20px rgba(50, 233, 4, 0.4) !important;
  border-color: #67d41e !important;
}

body.partenaires-page main .img-mistral {
  width: 220px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid #f88d00 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px #ec3b0533 !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-mistral:hover {
  box-shadow: 0 8px 20px rgba(221, 200, 15, 0.534) !important;
  border-color: #ecaa19 !important;
}

body.partenaires-page main .img-stef {
  width: 220px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid #0063f8 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px #04f0f0 !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-stef:hover {
  box-shadow: 0 8px 20px rgba(0, 126, 245, 0.945) !important;
  border-color: #00f0f0 !important;
}

body.partenaires-page main .img-deloitte {
  width: 220px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid black !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px #e6f3ce !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-deloitte:hover {
  box-shadow: 0 8px 20px black !important;
  border-color: #cce0e0 !important;
}

body.partenaires-page main .img-midi_libre {
  width: 220px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid rgb(228, 12, 12) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px #e6f3ce !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-midi_libre:hover {
  box-shadow: 0 8px 20px rgb(230, 60, 8) !important;
  border-color: #cce0e0 !important;
}

body.partenaires-page main .img-mocica {
  width: 220px !important;
  height: 150px !important;
  object-fit: contain !important;
  border: 2px solid rgb(12, 228, 199) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px #e6f3ce !important;
  transition: all 0.3s ease !important;
}

body.partenaires-page main .img-mocica:hover {
  box-shadow: 0 8px 20px rgb(8, 230, 193) !important;
  border-color: #cce0e0 !important;
}


/* Styles pour les textes des partenaires */
body.partenaires-page main .partenaire-item p {
  margin-top: 15px !important;
  font-weight: bold !important;
  font-size: 1.1em !important;
  color: #333 !important;
}

/* Page don.html - Style complet */
body.don-page main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
}

body.don-page main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body.don-page main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

body.don-page main .button {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 20px 0 !important;
}

/* Style spécial UNIQUEMENT pour le bouton "Faire un don" */
body.don-page main .button-don {
  border-radius: 15px !important;
  border-color: blue !important;
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: blue !important;
  font-weight: bold !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
}

body.don-page main .button-don:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  transform: scale(1.05) !important;
}

body.don-page main img {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}

/* Style pour la page votez.html */
body.votez-page main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
}

body.votez-page main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body.votez-page main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

/* Style spécial UNIQUEMENT pour le bouton "Votez" */
body.votez-page main .button-votez {
  border-radius: 15px !important;
  border: rgb(0, 204, 255) solid 2px !important;
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: blue !important;
  font-weight: bold !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
}

body.votez-page main .button-votez:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  transform: scale(1.05) !important;
}

body.votez-page main img {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
  height: 500px !important;
  width: 400px !important;
}

/* Style pour la page contact.html */
body.contact-page main {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 50px !important;
  height: auto !important;
  min-height: 100vh !important;
}

body.contact-page main h1 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  margin: 20px 0 !important;
  z-index: 10 !important;
}

body.contact-page main p {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
}

/* Container pour l'image de la bouteille avec icônes sociales */
body.contact-page main .bottle-container {
  position: relative !important;
  display: inline-block !important;
  margin: 30px auto !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 800px !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

body.contact-page main .bottle-container img {
  width: 100% !important;
  height: auto !important;
  max-width: 800px !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Icônes des réseaux sociaux par-dessus l'image */
body.contact-page main .social-icons {
  position: absolute !important;
  bottom: 20px !important;
  right: 20px !important;
  transform: none !important;
  display: flex !important;
  gap: 15px !important;
  background: transparent !important;
  padding: 15px !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border: none !important;
  animation: fadeInUp 0.8s ease-out !important;
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Style des icônes sociales */
body.contact-page main .social-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

body.contact-page main .social-icon svg {
  width: 24px !important;
  height: 24px !important;
  transition: all 0.3s ease !important;
}

/* Couleurs spécifiques pour chaque réseau social */
body.contact-page main .social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0c5ed6) !important;
  color: white !important;
}

body.contact-page main .social-icon.facebook:hover {
  background: linear-gradient(135deg, #0c5ed6, #0a4ca0) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4) !important;
}

body.contact-page main .social-icon.twitter {
  background: linear-gradient(135deg, #1da1f2, #0c85d0) !important;
  color: white !important;
}

body.contact-page main .social-icon.twitter:hover {
  background: linear-gradient(135deg, #0c85d0, #0a6fa0) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4) !important;
}

body.contact-page main .social-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584, #833ab4, #5851db, #405de6) !important;
  color: white !important;
}

body.contact-page main .social-icon.instagram:hover {
  background: linear-gradient(135deg, #c13584, #833ab4, #5851db) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4) !important;
}

body.contact-page main .social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885) !important;
  color: white !important;
}

body.contact-page main .social-icon.linkedin:hover {
  background: linear-gradient(135deg, #005885, #004466) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4) !important;
}

body.contact-page main .social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000) !important;
  color: white !important;
}

body.contact-page main .social-icon.youtube:hover {
  background: linear-gradient(135deg, #cc0000, #990000) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4) !important;
}

/* Effet de brillance au survol */
body.contact-page main .social-icon::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transform: rotate(45deg) translateX(-100%) !important;
  transition: transform 0.6s ease !important;
}

body.contact-page main .social-icon:hover::before {
  transform: rotate(45deg) translateX(100%) !important;
}

/* Section couleur spéciale pour contact.html */
body.contact-page main .contact-section {
  background: linear-gradient(135deg, #66a4ea 0%, #2144b8 100%) !important;
  color: white !important;
  padding: 40px 30px !important;
  margin: 30px 0 !important;
  border-radius: 15px !important;
  text-align: center !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  max-width: 800px !important;
  width: 90% !important;
}

body.contact-page main .contact-section h2 {
  color: white !important;
  margin-bottom: 20px !important;
  font-size: 1.8em !important;
}

body.contact-page main .contact-section p {
  color: white !important;
  margin: 15px 0 !important;
  font-size: 1.1em !important;
  line-height: 1.6 !important;
}

/* Formulaire de contact dans la section */
body.contact-page main .contact-form {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 25px !important;
}

body.contact-page main .email-input {
  width: 100% !important;
  max-width: 400px !important;
  padding: 12px 20px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 25px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  font-size: 16px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

body.contact-page main .email-input::placeholder {
  color: rgba(190, 226, 223, 0.7) !important;
}

body.contact-page main .email-input:focus {
  outline: none !important;
  border-color: white !important;
  background: rgb(125, 193, 202) !important;
  transform: scale(1.02) !important;
}

body.contact-page main .submit-btn {
  padding: 12px 30px !important;
  border: 2px solid white !important;
  border-radius: 25px !important;
  background: white !important;
  color: #2144b8 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

body.contact-page main .submit-btn:hover {
  background: transparent !important;
  color: white !important;
  transform: scale(1.05) !important;
}

body.contact-page main div {
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  z-index: 10 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
}

/* Styles pour la page boutique */

body.boutique-page main p {
font-size: 22px;
}

body.boutique-page main img {
  margin-top: 50px !important;
  margin-bottom: 30px !important;
  height: 500px !important;
  width: 300px !important;
}

/* Styles spécifiques pour chaque image de la boutique */
body.boutique-page main .img-stylos {
  height: 400px !important;
  width: 250px !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 15px rgba(23, 188, 230, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-stylos:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-parfums {
  height: 350px !important;
  width: 400px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-parfums:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-tee-shirt {
  height: 400px !important;
  width: 300px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-tee-shirt:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-sachet {
  height: 350px !important;
  width: 250px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-sachet:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-sachets {
  height: 300px !important;
  width: 300px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-sachets:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-casquettes {
  height: 320px !important;
  width: 380px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-casquettes:hover {
  transform: scale(1.05) !important;
}

body.boutique-page main .img-sachets {
  height: 300px !important;
  width: 300px !important;
  border-radius: 15px !important;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3) !important;
  transition: transform 0.3s ease !important;
}

body.boutique-page main .img-sachets:hover {
  transform: scale(1.05) !important;
}

/* Carrousel 2 par ligne pour boutique.html */
body.boutique-page main .carousel-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 40px !important;
  margin: 40px 0 !important;
  width: 100% !important;
  max-width: 1000px !important;
}

body.boutique-page main .carousel-row {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 60px !important;
  width: 100% !important;
}

body.boutique-page main .product-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: calc(50% - 30px) !important;
  max-width: 400px !important;
}

/* Style pour les deux images de sachets sur la même ligne */
body.boutique-page main .product-item .img-sachet,
body.boutique-page main .product-item .img-sachets {
  margin: 0 10px !important;
  display: inline-block !important;
  vertical-align: top !important;
}

/* Conteneur spécifique pour les deux images de sachets */
body.boutique-page main .product-item:has(.img-sachet) {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: calc(50% - 30px) !important;
  max-width: 400px !important;
}

body.boutique-page main .product-item:has(.img-sachet) .sachets-images {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 15px !important;
}

body.boutique-page main .product-item p {
  margin-top: 15px !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: #333 !important;
  text-align: center !important;
}

body.boutique-page main .product-item strong {
  color: #2681d6 !important;
  font-size: 16px !important;
}

/* Boutons Ajouter au panier */
body.boutique-page main .add-to-cart-btn {
  margin-top: 15px !important;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, #2681d6, #1a5490) !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(38, 129, 214, 0.3) !important;
}

body.boutique-page main .add-to-cart-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(38, 129, 214, 0.4) !important;
  background: linear-gradient(135deg, #1a5490, #0f3460) !important;
}

body.boutique-page main .add-to-cart-btn:active {
  transform: translateY(0) !important;
}

/* Section panier */
body.boutique-page main .cart-section {
  margin-top: 40px !important;
  text-align: center !important;
  padding: 20px !important;
  background: rgba(38, 129, 214, 0.05) !important;
  border-radius: 15px !important;
  border: 2px solid rgba(38, 129, 214, 0.2) !important;
}

body.boutique-page main .view-cart-btn {
  padding: 15px 30px !important;
  background: linear-gradient(135deg, #64ffff, #52b1ff) !important;
  color: white !important;
  border: none !important;
  border-radius: 30px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
}

body.boutique-page main .view-cart-btn:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
}

body.boutique-page main .cart-items {
  margin-top: 20px !important;
  padding: 20px !important;
  background: white !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

body.boutique-page main .cart-items h3 {
  color: #2681d6 !important;
  margin-bottom: 15px !important;
}

body.boutique-page main .checkout-btn {
  margin-top: 20px !important;
  padding: 12px 25px !important;
  background: linear-gradient(135deg, #0adada, #49a4ce) !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

body.boutique-page main .checkout-btn:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
}

/* Styles de bulles rectangulaires bleues pour apropos.html */
body.apropos-page main .content-bubble {
  border: 2px solid #0063f8;
  color: white !important;
  padding: 25px 35px !important;
  border-radius: 15px !important;
  margin: 30px auto !important;
  max-width: 800px !important;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

body.apropos-page main .content-bubble::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
  transition: left 0.5s ease !important;
}

body.apropos-page main .content-bubble:hover::before {
  left: 100% !important;
}

body.apropos-page main .content-bubble:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 35px rgba(135, 206, 235, 0.904) !important;
}

/* Style pour l'image Electron Satellite */
body.apropos-page main img[alt="Electron Satellite"] {
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
  border: 2px solid rgba(79, 70, 229, 0.1);
  margin: 20px auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.apropos-page main img[alt="Electron Satellite"]:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

/* Responsive pour l'image Electron Satellite */
@media (max-width: 768px) {
  body.apropos-page main img[alt="Electron Satellite"] {
    width: 90%;
    height: 250px;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  body.apropos-page main img[alt="Electron Satellite"] {
    width: 95%;
    height: 200px;
    margin: 10px auto;
  }
}

/* Section Autres Projets */
body.apropos-page main .other-projects-section {
  margin: 60px 0;
  padding: 0 20px;
}

body.apropos-page main .other-projects-section .section-description {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
}

body.apropos-page main .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cartes de projet */
body.apropos-page main .project-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 249, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
  border: 2px solid rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

body.apropos-page main .project-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%);
  border-radius: 20px;
  z-index: -1;
  animation: oxygen-flow 4s ease-in-out infinite;
}

body.apropos-page main .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.25);
}

body.apropos-page main .project-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

body.apropos-page main .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.apropos-page main .project-card:hover .project-img {
  transform: scale(1.05);
}

body.apropos-page main .project-content {
  padding: 25px 20px;
}

body.apropos-page main .project-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #4F46E5 !important;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

body.apropos-page main .project-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

body.apropos-page main .project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive pour la section projets */
@media (max-width: 768px) {
  body.apropos-page main .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  body.apropos-page main .other-projects-section .section-description {
    font-size: 1.1em;
    padding: 0 10px;
  }
  
  body.apropos-page main .project-content {
    padding: 20px 15px;
  }
  
  body.apropos-page main .project-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  body.apropos-page main .project-image {
    height: 180px;
  }
  
  body.apropos-page main .project-content {
    padding: 15px;
  }
  
  body.apropos-page main .project-title {
    font-size: 1.3em;
  }
  
  body.apropos-page main .project-description {
    font-size: 0.95em;
  }
}

/* Section Services OxyZen */
body.apropos-page main .services-section {
  margin: 60px 0;
  padding: 0 20px;
}

body.apropos-page main .section-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #4F46E5 !important;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}

body.apropos-page main .section-description {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
}

body.apropos-page main .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cartes de service statiques */
body.apropos-page main .service-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 249, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
  border: 2px solid rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

body.apropos-page main .service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(79, 70, 229, 0.1) 50%, 
    transparent 70%);
  border-radius: 20px;
  z-index: -1;
  animation: oxygen-flow 4s ease-in-out infinite;
}

body.apropos-page main .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.25);
}

/* Header de la carte */
body.apropos-page main .service-header {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

body.apropos-page main .service-image {
  flex: 0 0 180px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(79, 70, 229, 0.2);
  background: rgba(79, 70, 229, 0.05);
}

body.apropos-page main .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block !important;
  visibility: visible !important;
}

body.apropos-page main .service-card:hover .service-img {
  transform: scale(1.05);
}

body.apropos-page main .service-title-section {
  flex: 1;
}

body.apropos-page main .service-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #4F46E5 !important;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

/* Contenu toujours visible */
body.apropos-page main .service-content {
  padding: 25px 20px;
}

body.apropos-page main .service-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

body.apropos-page main .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

body.apropos-page main .feature-tag {
  background: linear-gradient(135deg, #06B6D4, #4F46E5);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

/* Détails supplémentaires */
body.apropos-page main .service-details {
  background: rgba(79, 70, 229, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

body.apropos-page main .service-details h4 {
  font-size: 1.2em;
  font-weight: bold;
  color: #4F46E5 !important;
  margin-bottom: 15px;
}

body.apropos-page main .service-details p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

body.apropos-page main .service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.apropos-page main .service-details li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  color: #666;
  position: relative;
  padding-left: 20px;
}

body.apropos-page main .service-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #4F46E5;
  font-weight: bold;
}

body.apropos-page main .service-details li:last-child {
  border-bottom: none;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  body.apropos-page main .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  body.apropos-page main .service-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  body.apropos-page main .service-image {
    flex: 0 0 auto;
    width: 250px;
    height: 150px;
  }
  
  body.apropos-page main .section-title {
    font-size: 2em;
  }
  
  body.apropos-page main .section-description {
    font-size: 1.1em;
    padding: 0 10px;
  }
}

/* Catégories chiffrées pour apropos.html - Style sans cases */
body.apropos-page main .stats-container {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 60px !important;
  margin: 60px 0 !important;
  flex-wrap: wrap !important;
  max-width: 1200px !important;
  width: 100% !important;
}

body.apropos-page main .stat-card {
  flex: 1 !important;
  min-width: 250px !important;
  max-width: 300px !important;
  background: transparent !important;
  border-radius: 0px !important;
  padding: 0px !important;
  text-align: center !important;
  color: #2C5282 !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: visible !important;
  border: none !important;
}

body.apropos-page main .stat-card::before {
  display: none !important;
}

body.apropos-page main .stat-card:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Icônes comme catégories principales */
body.apropos-page main .stat-icon {
  width: 120px !important;
  height: 120px !important;
  margin: 0 auto 25px !important;
  background: transparent !important;
  border-radius: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: none !important;
  border: 3px solid #87CEEB !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

body.apropos-page main .stat-icon::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.3), transparent) !important;
  transition: left 0.5s ease !important;
}

body.apropos-page main .stat-card:hover .stat-icon::before {
  left: 100% !important;
}

body.apropos-page main .stat-card:hover .stat-icon {
  border-color: #4A90E2 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3) !important;
}

/* Images des icônes statistiques */
body.apropos-page main .stat-img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  filter: none !important;
  transition: all 0.3s ease !important;
  background: #f0f0f0 !important;
  display: block !important;
}

/* Fallback si image non trouvée */
body.apropos-page main .stat-img[src=""],
body.apropos-page main .stat-img:not([src]),
body.apropos-page main .stat-img[src$=".jpg"]:not([src*="Emplois_logo"]):not([src*="Empreinte_icône"]):not([src*="Krypto_icône"]) {
  content: "🖼️" !important;
  font-size: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #87CEEB !important;
  color: white !important;
  border-radius: 10px !important;
}

body.apropos-page main .stat-card:hover .stat-img {
  transform: scale(1.05) !important;
  filter: brightness(1.1) contrast(1.05) !important;
}

/* Nombres des statistiques */
body.apropos-page main .stat-number {
  font-size: 3.2em !important;
  font-weight: bold !important;
  margin-bottom: 8px !important;
  background: linear-gradient(135deg, #4A90E2, #2C5282) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: all 0.3s ease !important;
}

body.apropos-page main .stat-card:hover .stat-number {
  background: linear-gradient(135deg, #87CEEB, #4A90E2) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transform: scale(1.05) !important;
}

/* Labels des statistiques */
body.apropos-page main .stat-label {
  font-size: 1.3em !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  color: #2C5282 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
}

body.apropos-page main .stat-card:hover .stat-label {
  color: #4A90E2 !important;
  transform: scale(1.02) !important;
}

/* Descriptions des statistiques */
body.apropos-page main .stat-description {
  font-size: 0.95em !important;
  color: #666 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

body.apropos-page main .stat-card:hover .stat-description {
  color: #4A90E2 !important;
}

/* Animation de comptage */
@keyframes countUp {
  from {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Animation d'apparition progressive des cartes */
body.apropos-page main .stat-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out !important;
}

body.apropos-page main .stat-card:nth-child(2) {
  animation: slideInUp 0.8s ease-out 0.2s both !important;
}

body.apropos-page main .stat-card:nth-child(3) {
  animation: slideInRight 0.8s ease-out 0.4s both !important;
}

@keyframes slideInLeft {
  from {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0 !important;
    transform: translateY(50px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0 !important;
    transform: translateX(50px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

body.apropos-page main .content-bubble h1 {
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  font-size: 26px !important;
  font-weight: bold !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
}

body.apropos-page main .content-bubble p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  text-align: left !important;
  position: relative !important;
  z-index: 1 !important;
}
/* HUD OxyZen - Interface de jeu */
.oxy-hud {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    min-width: 400px;
    animation: hudSlideDown 0.8s ease-out;
    transition: all 0.4s ease;
}

/* HUD minimisé */
.oxy-hud.minimized {
    padding: 10px 15px;
    min-width: auto;
    cursor: pointer;
}

.oxy-hud.minimized .hud-stats,
.oxy-hud.minimized .hud-level {
    display: none;
}

.oxy-hud.minimized .hud-title {
    font-size: 14px;
    margin-bottom: 0;
}

.oxy-hud.minimized .hud-subtitle {
    display: none;
}

/* Boutons de contrôle */
.hud-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.hud-control-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.hud-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hud-control-btn.minimize {
    background: rgba(255, 193, 7, 0.3);
}

.hud-control-btn.minimize:hover {
    background: rgba(255, 193, 7, 0.5);
}

.hud-control-btn.close {
    background: rgba(220, 53, 69, 0.3);
}

.hud-control-btn.close:hover {
    background: rgba(220, 53, 69, 0.5);
}

@keyframes hudSlideDown {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.hud-header {
    text-align: center;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hud-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #87CEEB, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hud-subtitle {
    font-size: 12px;
    opacity: 0.8;
    color: #e3f2fd;
}

.hud-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hud-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-label {
    min-width: 80px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-bar-container {
    flex: 1;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Jauge d'oxygène */
.oxygen-bar {
    background: linear-gradient(90deg, #00bcd4, #4fc3f7, #87ceeb);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

/* Jauge de toxicité */
.toxicity-bar {
    background: linear-gradient(90deg, #4caf50, #8bc34a, #cddc39);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.toxicity-bar.high {
    background: linear-gradient(90deg, #ff9800, #ff5722, #f44336);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.stat-value {
    min-width: 45px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hud-level {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.level-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2, #87CEEB);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    animation: levelPulse 3s infinite;
}

@keyframes levelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.level-icon {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .oxy-hud {
        min-width: 320px;
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .stat-label {
        min-width: 70px;
        font-size: 12px;
    }
    
    .hud-title {
        font-size: 16px;
    }
}
/* Hub Social OxyZen - Interface Communautaire Transparente */

/* Container principal */
.social-hub-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 350px;
    max-height: 500px;
    display: none;
    flex-direction: column;
    animation: slideInRight 0.5s ease-out;
    transition: all 0.3s ease;
}

/* Bouton toggle pour hub */
.social-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(79, 195, 247, 0.2);
    border: 1px solid rgba(79, 195, 247, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 998;
    font-size: 20px;
}

.social-toggle-btn:hover {
    background: rgba(79, 195, 247, 0.3);
    transform: scale(1.1);
}

.social-toggle-btn.hidden {
    display: none;
}

.social-hub-container.active,
.social-hub-container:not(.hidden) {
    display: flex;
}

.social-hub-container.hidden {
    display: none;
}

/* Header */
.social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Tabs */
.social-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.social-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.social-tab.active {
    background: rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.5);
    color: #4fc3f7;
}

.social-tab-icon {
    font-size: 16px;
}

/* Content */
.social-content {
    flex: 1;
    overflow-y: auto;
    color: #ffffff;
}

.social-section {
    margin-bottom: 20px;
}

.social-section h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Chat Section */
.chat-messages {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4fc3f7;
}

.chat-message .author {
    color: #4fc3f7;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 5px;
}

.chat-message .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input button {
    background: rgba(79, 195, 247, 0.2);
    border: 1px solid rgba(79, 195, 247, 0.5);
    border-radius: 8px;
    padding: 10px 15px;
    color: #4fc3f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: rgba(79, 195, 247, 0.3);
}

/* Community Section */
.community-members {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4fc3f7;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.social-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid #ff9800;
}

.event-title {
    color: #ff9800;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.event-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 8px;
    background: rgba(255, 140, 90, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.event-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.participant-avatars {
    display: flex;
    margin-left: auto;
}

.participant-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    border: 2px solid rgba(255, 140, 90, 0.3);
    margin-left: -8px;
    font-size: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participant-avatar:first-child {
    margin-left: 0;
}

/* Réseaux sociaux */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 200, 150, 0.2);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 90, 0.3);
    color: white;
}

.social-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.social-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.social-stats {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Bouton de fermeture */
.social-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-close:hover {
    background: rgba(255, 140, 90, 0.5);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .social-hub {
        left: 20px;
        width: 280px;
        max-height: 500px;
        padding: 20px;
    }
    
    .social-title {
        font-size: 18px;
    }
    
    .social-tab {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .social-tab-icon {
        font-size: 14px;
    }
}

/* États caché/visible */
.social-hub.hidden {
    transform: translateY(-50%) translateX(-120%);
    opacity: 0;
    pointer-events: none;
}
/* ============================================
   RESPONSIVE.CSS - TOUS LES STYLES RESPONSIVES MOBILES
   ============================================ */

/* ============================================
   PAGE PARTENAIRES - RESPONSIVE MOBILE
   ============================================ */

/* Mobile - Écrans jusqu'à 768px */
@media (max-width: 768px) {
  /* Page partenaires - Textes agrandis */
  body.partenaires-page main h1 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
  }
  
  /* Page partenaires - Uniquement le texte <p> */
  body.partenaires-page main > p:first-child {
    font-size: 18px !important;
    margin-bottom: 25px !important;
    padding: 0 10px !important;
  
  }
  
  body.partenaires-page main .partenaires-container {
    padding: 15px 0 !important;
  }
  
  body.partenaires-page main .partenaires-scroll {
    gap: 20px !important;
    padding: 15px 5px !important;
  }
  
  body.partenaires-page main .partenaire-item {
    min-width: 150px !important;
    max-width: 200px !important;
    padding: 15px !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  body.partenaires-page main .partenaire-item img {
    max-height: 80px !important;
  }
  
  body.partenaires-page main .scroll-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
    padding: 10px !important;
  }
  
  body.partenaires-page main .scroll-left {
    left: 5px !important;
  }
  
  body.partenaires-page main .scroll-right {
    right: 5px !important;
  }
  
  body.partenaires-page main .button {
    padding: 12px 25px !important;
    font-size: 1rem !important;
    margin-top: 25px !important;
  }
  
  /* Page à propos */
  body.apropos-page main .carousel-img {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
  }
  
  /* Ancien style pour compatibilité */
  body.partenaire-item {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* Petit mobile - Écrans jusqu'à 480px */
@media (max-width: 480px) {
  body.partenaires-page main {
    padding: 10px !important;
  }
  
  body.partenaires-page main h1 {
    font-size: clamp(1.5rem, 10vw, 2rem) !important;
    margin-bottom: 10px !important;
  }
  
  body.partenaires-page main p {
    font-size: clamp(1.1rem, 5vw, 1.4rem) !important;
    margin-bottom: 20px !important;
    padding: 0 5px !important;
  }
  
  body.partenaires-page main .partenaires-container {
    padding: 10px 0 !important;
  }
  
  body.partenaires-page main .partenaires-scroll {
    gap: 15px !important;
    padding: 10px 5px !important;
  }
  
  body.partenaires-page main .partenaire-item {
    min-width: 120px !important;
    max-width: 160px !important;
    padding: 10px !important;
  }
  
  body.partenaires-page main .partenaire-item img {
    max-height: 60px !important;
  }
  
  body.partenaires-page main .scroll-btn {
    width: 35px !important;
    height: 35px !important;
    font-size: 1rem !important;
    padding: 8px !important;
  }
  
  body.partenaires-page main .scroll-left {
    left: 2px !important;
  }
  
  body.partenaires-page main .scroll-right {
    right: 2px !important;
  }
  
  body.partenaires-page main .button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    margin-top: 20px !important;
  }
}

/* Très petit mobile - Écrans jusqu'à 360px */
@media (max-width: 360px) {
  body.partenaires-page main h1 {
    font-size: clamp(1.3rem, 12vw, 1.8rem) !important;
  }
  
  body.partenaires-page main p {
    font-size: clamp(1rem, 4.5vw, 1.3rem) !important;
  }
  
  body.partenaires-page main .partenaire-item {
    min-width: 100px !important;
    max-width: 140px !important;
    padding: 8px !important;
  }
  
  body.partenaires-page main .partenaire-item img {
    max-height: 50px !important;
  }
  
  body.partenaires-page main .scroll-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================
   PAGE INDEX - RESPONSIVE MOBILE
   ============================================ */

/* Mobile - Écrans jusqu'à 768px */
@media (max-width: 768px) {
  body.index-page main .hud-container {
    transform: scale(0.8) !important;
    top: 10px !important;
    right: 10px !important;
  }
  
  body.index-page main .social-hub-container {
    transform: scale(0.8) !important;
    bottom: 10px !important;
    left: 10px !important;
  }
  
  body.index-page main .game-actions-container {
    transform: scale(0.8) !important;
    bottom: 10px !important;
    right: 10px !important;
  }
  
  body.index-page main .arrow-left,
  body.index-page main .arrow-right {
    font-size: 2rem !important;
    padding: 10px 15px !important;
  }
  
  body.index-page main .arrow-left {
    left: 10px !important;
  }
  
  body.index-page main .arrow-right {
    right: 10px !important;
  }

  html body.index-page main p {
    left: 30px !important;
  }

  html body.index-page main h1 {
    left: 1px !important;
  }

  /* Version Beta - déplacer à droite */
  html body.index-page main p {
    left: 40px !important;
  }
}

/* Petit mobile - Écrans jusqu'à 480px */
@media (max-width: 480px) {
  body.index-page main .hud-container {
    transform: scale(0.7) !important;
    top: 5px !important;
    right: 5px !important;
  }
  
  body.index-page main .social-hub-container {
    transform: scale(0.7) !important;
    bottom: 5px !important;
    left: 5px !important;
  }
  
  body.index-page main .game-actions-container {
    transform: scale(0.7) !important;
    bottom: 5px !important;
    right: 5px !important;
  }
  
  body.index-page main .arrow-left,
  body.index-page main .arrow-right {
    font-size: 1.5rem !important;
    padding: 8px 12px !important;
  }
  
  body.index-page main .arrow-left {
    left: 5px !important;
  }
  
  body.index-page main .arrow-right {
    right: 5px !important;
  }
}

/* Très petit mobile - Écrans jusqu'à 360px */
@media (max-width: 360px) {
  body.index-page main .hud-container {
    transform: scale(0.6) !important;
    top: 2px !important;
    right: 2px !important;
  }
  
  body.index-page main .social-hub-container {
    transform: scale(0.6) !important;
    bottom: 2px !important;
    left: 2px !important;
  }
  
  body.index-page main .game-actions-container {
    transform: scale(0.6) !important;
    bottom: 2px !important;
    right: 2px !important;
  }
  
  body.index-page main .arrow-left,
  body.index-page main .arrow-right {
    font-size: 1.2rem !important;
    padding: 6px 10px !important;
  }
}

/* ============================================
   PAGE DON - RESPONSIVE MOBILE
   ============================================ */

/* Mobile - Écrans jusqu'à 768px */
@media (max-width: 768px) {
  body.don-page main {
    padding: 20px !important;
  }
  
  body.don-page main h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }
  
  body.don-page main p {
    font-size: clamp(1rem, 3vw, 1.3rem) !important;
    margin: 15px 0 !important;
  }
  
  body.don-page main .button {
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
  }
  
  body.don-page main .button-don {
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
  }
  
  body.don-page main img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Petit mobile - Écrans jusqu'à 480px */
@media (max-width: 480px) {
  body.don-page main {
    padding: 15px !important;
  }
  
  body.don-page main h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
  
  body.don-page main p {
    font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
    margin: 12px 0 !important;
  }
  
  body.don-page main .button {
    padding: 12px 25px !important;
    font-size: 1rem !important;
  }
  
  body.don-page main .button-don {
    padding: 12px 25px !important;
    font-size: 1rem !important;
  }
}

/* Très petit mobile - Écrans jusqu'à 360px */
@media (max-width: 360px) {
  body.don-page main {
    padding: 10px !important;
  }
  
  body.don-page main h1 {
    font-size: clamp(1.3rem, 10vw, 1.8rem) !important;
  }
  
  body.don-page main p {
    font-size: clamp(0.8rem, 5vw, 1.1rem) !important;
    margin: 10px 0 !important;
  }
  
  body.don-page main .button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
  
  body.don-page main .button-don {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================
   PAGE VOTEZ - RESPONSIVE MOBILE
   ============================================ */

/* Mobile - Écrans jusqu'à 768px */
@media (max-width: 768px) {
  body.votez-page main {
    padding: 20px !important;
  }
  
  body.votez-page main h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }
  
  body.votez-page main p {
    font-size: clamp(1rem, 3vw, 1.3rem) !important;
    margin: 15px 0 !important;
  }
  
  body.votez-page main .button {
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
  }
}

/* Petit mobile - Écrans jusqu'à 480px */
@media (max-width: 480px) {
  body.votez-page main {
    padding: 15px !important;
  }
  
  body.votez-page main h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
  
  body.votez-page main p {
    font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
    margin: 12px 0 !important;
  }
  
  body.votez-page main .button {
    padding: 12px 25px !important;
    font-size: 1rem !important;
  }
}

/* Très petit mobile - Écrans jusqu'à 360px */
@media (max-width: 360px) {
  body.votez-page main {
    padding: 10px !important;
  }
  
  body.votez-page main h1 {
    font-size: clamp(1.3rem, 10vw, 1.8rem) !important;
  }
  
  body.votez-page main p {
    font-size: clamp(0.8rem, 5vw, 1.1rem) !important;
    margin: 10px 0 !important;
  }
  
  body.votez-page main .button {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================
   PAGE A PROPOS - RESPONSIVE MOBILE
   ============================================ */

/* Mobile - Écrans jusqu'à 768px */
@media (max-width: 768px) {
  body.apropos-page main {
    padding: 20px !important;
  }
  
  body.apropos-page main h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }
  
  body.apropos-page main p {
    font-size: clamp(1rem, 3vw, 1.3rem) !important;
    margin: 15px 0 !important;
  }
  
  body.apropos-page main .carousel-container {
    max-width: 100% !important;
  margin: 20px 0 !important;
  }
  
  body.apropos-page main .carousel-img {
    width: 100% !important;
    max-width: 350px !important;
    height: 250px !important;
  }
}

/* Petit mobile - Écrans jusqu'à 480px */
@media (max-width: 480px) {
  body.apropos-page main {
    padding: 15px !important;
  }
  
  body.apropos-page main h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
  
  body.apropos-page main p {
    font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
    margin: 12px 0 !important;
  }
  
  body.apropos-page main .carousel-img {
    height: 200px !important;
  }
}

/* Très petit mobile - Écrans jusqu'à 360px */
@media (max-width: 360px) {
  body.apropos-page main {
    padding: 10px !important;
  }
  
  body.apropos-page main h1 {
    font-size: clamp(1.3rem, 10vw, 1.8rem) !important;
  }
  
  body.apropos-page main p {
    font-size: clamp(0.8rem, 5vw, 1.1rem) !important;
    margin: 10px 0 !important;
  }
  
  body.apropos-page main .carousel-img {
    height: 180px !important;
  }
}

/* ============================================
   ACCESSIBILITÉ ET OPTIMISATIONS
   ============================================ */

/* Réductions de mouvement pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  body.partenaires-page main .partenaire-item {
    transition: none !important;
  }
  
  body.partenaires-page main .partenaire-item img {
    transition: none !important;
  }
  
  body.partenaires-page main .scroll-btn {
    transition: none !important;
  }
  
  body.index-page main .hud-container,
  body.index-page main .social-hub-container,
  body.index-page main .game-actions-container {
    transition: none !important;
  }
  
  body.don-page main .button,
  body.don-page main .button-don {
    transition: none !important;
  }
  
  body.votez-page main .button {
    transition: none !important;
  }
}

/* Mode sombre (si supporté) */
@media (prefers-color-scheme: dark) {
  body.partenaires-page main .partenaire-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }
  
  body.partenaires-page main .partenaire-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  body.partenaires-page main .partenaire-item p {
    color: #e0e0e0 !important;
  }
}

/* Focus pour accessibilité */
body.partenaires-page main .partenaire-item:focus-within {
  outline: 3px solid #4F46E5 !important;
  outline-offset: 2px !important;
}

body.don-page main .button:focus,
body.don-page main .button-don:focus {
  outline: 3px solid #4F46E5 !important;
  outline-offset: 2px !important;
}

body.votez-page main .button:focus {
  outline: 3px solid #4F46E5 !important;
  outline-offset: 2px !important;
}

/* ============================================
   UTILITAIRE RESPONSIVE
   ============================================ */

/* Classes utilitaires pour responsive */
.text-responsive {
  font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
}

.text-responsive-small {
  font-size: clamp(0.8rem, 2vw, 1.2rem) !important;
}

.text-responsive-large {
  font-size: clamp(1.2rem, 3vw, 2rem) !important;
}

.container-responsive {
  padding: clamp(10px, 3vw, 30px) !important;
}

.button-responsive {
  padding: clamp(8px, 2vw, 16px) clamp(16px, 4vw, 32px) !important;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
}

/* Masquer des éléments sur mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Afficher seulement sur mobile */
@media (min-width: 769px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* Masquer sur petit mobile */
@media (max-width: 480px) {
  .hide-small-mobile {
    display: none !important;
  }
}

/* Afficher seulement sur petit mobile */
@media (min-width: 481px) {
  .show-small-mobile-only {
    display: none !important;
  }
}
