/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --neon-green: #5EB031;
  --neon-glow: rgba(94, 176, 49, 0.8);
  --neon-glow-intense: rgba(94, 176, 49, 1);
  --gray: #333333;
  --gray-light: #666666;
}

/* LANGUAGE SYSTEM */
/* Par défaut, afficher l'anglais et masquer le français */
.lang-fr {
  display: none;
}

.lang-en {
  display: block;
}

/* Quand le body a la classe 'french', inverser */
body.french .lang-fr {
  display: block;
}

body.french .lang-en {
  display: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* BACKGROUND LAYERS */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

  /* Grille électrique très subtile */
  background-image:
    /* Effet vignette - radial gradient du centre */
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.85) 100%),
    /* Grille électrique */
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(90, 187, 72, 0.006) 49px, rgba(90, 187, 72, 0.006) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(90, 187, 72, 0.006) 49px, rgba(90, 187, 72, 0.006) 50px);
  animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {

  0%,
  100% {
    opacity: 0.002;
  }

  50% {
    opacity: 0.004;
  }
}



/* Petits points pour texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(90, 187, 72, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(90, 187, 72, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 25px 25px;
  opacity: 0.3;
}



/* PARTICULES VERTES FLOTTANTES */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--neon-green);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 15s infinite ease-in-out;
}

/* Variations de taille et position pour chaque particule */
.particle:nth-child(1) {
  width: 3px;
  height: 3px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  width: 2px;
  height: 2px;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.particle:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 30%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  width: 2px;
  height: 2px;
  left: 40%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 50%;
  animation-delay: 3s;
  animation-duration: 16s;
}

.particle:nth-child(6) {
  width: 2px;
  height: 2px;
  left: 60%;
  animation-delay: 5s;
  animation-duration: 13s;
}

.particle:nth-child(7) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  width: 3px;
  height: 3px;
  left: 80%;
  animation-delay: 4s;
  animation-duration: 15s;
}

.particle:nth-child(9) {
  width: 2px;
  height: 2px;
  left: 90%;
  animation-delay: 1s;
  animation-duration: 19s;
}

.particle:nth-child(10) {
  width: 3px;
  height: 3px;
  left: 15%;
  animation-delay: 3s;
  animation-duration: 14s;
}

.particle:nth-child(11) {
  width: 2px;
  height: 2px;
  left: 25%;
  animation-delay: 5s;
  animation-duration: 16s;
}

.particle:nth-child(12) {
  width: 4px;
  height: 4px;
  left: 35%;
  animation-delay: 0s;
  animation-duration: 13s;
}

.particle:nth-child(13) {
  width: 2px;
  height: 2px;
  left: 45%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(14) {
  width: 3px;
  height: 3px;
  left: 55%;
  animation-delay: 4s;
  animation-duration: 15s;
}

.particle:nth-child(15) {
  width: 2px;
  height: 2px;
  left: 75%;
  animation-delay: 1s;
  animation-duration: 17s;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
    transform: translateY(90vh) translateX(20px) scale(1);
  }

  50% {
    opacity: 0.2;
    transform: translateY(40vh) translateX(-30px) scale(1.2);
  }

  90% {
    opacity: 0.1;
    transform: translateY(10vh) translateX(40px) scale(0.8);
  }

  100% {
    transform: translateY(-10vh) translateX(0) scale(0);
    opacity: 0;
  }
}

/* LANGUAGE SWITCHER */
.lang-switcher-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
}

.lang-button {
  background: transparent;
  border: 2px solid var(--neon-green);
  border-radius: 4px;
  width: 46px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.lang-button:hover {
  transform: scale(1.05);
  background: rgba(94, 176, 49, 0.1);
  box-shadow: 0 0 10px rgba(94, 176, 49, 0.3);
}

.lang-button.active {
  background: var(--neon-green);
  box-shadow: 0 0 15px rgba(94, 176, 49, 0.5);
}

.lang-button .flag-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.lang-button.active .flag-text {
  color: var(--black);
}

/* LOCK BUTTON STYLES */
.lock-button svg {
  stroke: var(--neon-green);
  transition: all 0.3s ease;
}

.lock-button:hover svg {
  stroke: var(--neon-green);
  filter: drop-shadow(0 0 8px rgba(94, 176, 49, 0.8));
}

/* SECRET POPUP */
.secret-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.secret-popup.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.secret-popup-content {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 2px solid var(--neon-green);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow:
    0 0 30px rgba(94, 176, 49, 0.3),
    0 0 60px rgba(94, 176, 49, 0.2),
    inset 0 0 50px rgba(94, 176, 49, 0.05);
  animation: popupSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.close-secret-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--neon-green);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.close-secret-popup:hover {
  background: rgba(94, 176, 49, 0.1);
  transform: rotate(90deg);
}

.secret-header {
  text-align: center;
  margin-bottom: 2rem;
}

.top-secret-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.badge-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0.6;
}

.badge-text {
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 0.3rem 1rem;
  border: 1px solid var(--neon-green);
  border-radius: 2px;
  background: rgba(94, 176, 49, 0.05);
  text-shadow: 0 0 10px rgba(94, 176, 49, 0.5);
}

.secret-icon {
  stroke: var(--neon-green);
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(94, 176, 49, 0.6));
  animation: lockPulse 3s ease-in-out infinite;
}

@keyframes lockPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(94, 176, 49, 0.6));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(94, 176, 49, 0.8));
    transform: scale(1.05);
  }
}

.secret-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(94, 176, 49, 0.5);
}

.secret-description {
  text-align: center;
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.secret-code-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(94, 176, 49, 0.3);
  border-radius: 6px;
  padding: 1rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3em;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.secret-code-input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(94, 176, 49, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.secret-code-input::placeholder {
  color: rgba(94, 176, 49, 0.4);
  letter-spacing: 0.2em;
}

.secret-error {
  min-height: 1.5rem;
  color: #ff4444;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.secret-error.show {
  opacity: 1;
  animation: shake 0.5s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

.secret-submit-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--neon-green);
  border-radius: 6px;
  padding: 1rem 2rem;
  color: var(--neon-green);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.secret-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--neon-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.secret-submit-btn:hover::before {
  width: 400px;
  height: 400px;
}

.secret-submit-btn:hover {
  color: var(--black);
  box-shadow: 0 0 20px rgba(94, 176, 49, 0.5);
  transform: translateY(-2px);
}

.submit-arrow {
  transition: transform 0.3s ease;
}

.secret-submit-btn:hover .submit-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 788px) {
  .secret-popup-content {
    padding: 2rem 1.5rem;
  }

  .secret-title {
    font-size: 1.5rem;
  }

  .secret-code-input {
    font-size: 1rem;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 10;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ekg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.001;
  z-index: 1;
  background-image:
    /* Lignes principales - plus épaisses et espacées comme sur un ECG */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 39px,
      rgba(90, 187, 72, 0.15) 39px,
      rgba(90, 187, 72, 0.15) 40px),
    /* Lignes secondaires - fines entre les principales */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 9px,
      rgba(90, 187, 72, 0.08) 9px,
      rgba(90, 187, 72, 0.08) 10px);
  animation: ekg-scroll 25s linear infinite;
}

/* Effets électriques - éclairs et lueurs - SUPPRIMÉS */
.ekg-background::after {
  display: none;
}





@keyframes ekg-scroll {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }

  25% {
    transform: translateY(12px) scaleY(1.01);
    opacity: 0.95;
  }

  50% {
    transform: translateY(25px) scaleY(0.99);
    opacity: 1;
  }

  75% {
    transform: translateY(37px) scaleY(1.005);
    opacity: 0.97;
  }

  100% {
    transform: translateY(50px) scaleY(1);
    opacity: 1;
  }
}

.hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 7rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CADRE SVG - Taille réduite et responsive avec GLOW INTENSE */
.logo-container img[src*="cadre"] {
  width: 100px !important;
  height: 150px !important;
  max-width: 90vw;
  filter: drop-shadow(0 0 20px rgba(94, 176, 49, 1)) drop-shadow(0 0 40px rgba(94, 176, 49, 0.8)) drop-shadow(0 0 60px rgba(94, 176, 49, 0.6));
  animation: frame-glow-pulse 2s ease-in-out infinite;
}

@keyframes frame-glow-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(94, 176, 49, 1)) drop-shadow(0 0 40px rgba(94, 176, 49, 0.8)) drop-shadow(0 0 60px rgba(94, 176, 49, 0.6));
  }

  50% {
    filter: drop-shadow(0 0 25px rgba(94, 176, 49, 1)) drop-shadow(0 0 50px rgba(94, 176, 49, 0.9)) drop-shadow(0 0 70px rgba(94, 176, 49, 0.7));
  }
}

/* LOGO PRINCIPAL - Taille réduite et responsive */
.hero-image {
  max-width: 100%;
  height: auto;
  width: min(700px, 95vw) !important;
  /* Taille du logo avec cadre */
}

/* SPARKLE TRAILS - Traits rouges avec espacement */
.sparkle-trail {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

.sparkle-trail-1 {
  top: 3rem;
  left: 3rem;
}

.sparkle-trail-2 {
  top: 3rem;
  right: 3rem;
}

.sparkle-trail-3 {
  bottom: 3rem;
  right: 3rem;
}

/* Responsive pour mobile */
@media (max-width: 788px) {
  .hero-section {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .sparkle-trail-1 {
    top: 2rem;
    left: 2rem;
  }

  .sparkle-trail-2 {
    top: 2rem;
    right: 2rem;
  }

  .sparkle-trail-3 {
    bottom: 2rem;
    right: 2rem;
  }

  .logo-container img[src*="cadre"] {
    width: 130px !important;
    height: 130px !important;
  }

  .logo-container {
    margin-bottom: 1rem;
  }

  .hero-image {
    width: min(500px, 90vw) !important;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 25px rgba(94, 176, 49, 0.9)) drop-shadow(0 0 50px rgba(94, 176, 49, 0.6)) drop-shadow(0 0 75px rgba(94, 176, 49, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(94, 176, 49, 1)) drop-shadow(0 0 60px rgba(94, 176, 49, 0.7)) drop-shadow(0 0 90px rgba(94, 176, 49, 0.5));
  }
}

.hero-title {
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--neon-green);
}

/* HERO TAGLINE */
.hero-tagline {
  display: none;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  text-align: left;
  color: var(--white);
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-81%);
  z-index: 3;
  line-height: 1.15;
  font-size: clamp(2rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  width: auto;
  max-width: none;
}

.tagline-part1 {
  font-weight: 400;
  opacity: 1;
  font-size: clamp(0.95rem, 2.8vw, 1.5rem);
}

.tagline-part2 {
  font-weight: 400;
  text-indent: 0;
  margin-left: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.5rem);
}

.art-highlight {
  color: var(--neon-green);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(94, 176, 49, 1), 0 0 40px rgba(94, 176, 49, 0.8), 0 0 60px rgba(94, 176, 49, 0.6);
}

/* Hero Image Glow Effect */
.hero-image {
  max-width: 900px;
  width: 90vw;
  height: auto;
}

/* Glow centré sur l'image du logo */
.hero-glow {
  position: relative;
  filter: drop-shadow(0 0 60px rgba(94, 176, 49, 0.6)) drop-shadow(0 0 100px rgba(94, 176, 49, 0.4)) drop-shadow(0 0 150px rgba(94, 176, 49, 0.3));
  animation: simple-glow-pulse 5s ease-in-out infinite;
}

@keyframes simple-glow-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 50px rgba(94, 176, 49, 0.5)) drop-shadow(0 0 90px rgba(94, 176, 49, 0.3)) drop-shadow(0 0 130px rgba(94, 176, 49, 0.2));
  }

  50% {
    filter: drop-shadow(0 0 80px rgba(94, 176, 49, 0.8)) drop-shadow(0 0 140px rgba(94, 176, 49, 0.6)) drop-shadow(0 0 200px rgba(94, 176, 49, 0.4));
  }
}

/* Responsive pour mobile */
@media (max-width: 788px) {
  .hero-tagline {
    font-size: clamp(1.6rem, 6.5vw, 2.3rem);
    bottom: 55px;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 500;
    line-height: 1.25;
  }

  .tagline-part1,
  .tagline-part2 {
    font-size: clamp(1.6rem, 6.5vw, 2.3rem);
    font-weight: 500;
  }
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(94, 176, 49, 0.3);
  text-shadow: 0 0 5px rgba(94, 176, 49, 0.5);
}

.cta-button:hover {
  background-color: var(--neon-green);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(94, 176, 49, 0.5);
  text-shadow: none;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(90, 187, 72, 0.1) 25%,
      transparent 50%,
      rgba(90, 187, 72, 0.1) 75%,
      transparent 100%);
  background-size: 400% 400%;
  z-index: -1;
  animation: electric-flow 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover::before {
  opacity: 1;
}

@keyframes electric-flow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 400% 0%;
  }
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid var(--neon-green);
  border-radius: inherit;
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 140%;
    height: 200%;
    opacity: 0;
  }
}

/* GDPR NOTICE */
.gdpr-notice {
  font-size: 10px;
  color: #666;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gdpr-notice a {
  color: var(--neon-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.gdpr-notice a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* SCROLL DOWN INDICATORS (Double Arrows) */
.scroll-indicators {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 500;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-indicators.hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-indicator {
  position: absolute;
  cursor: pointer;
  pointer-events: all;
}

.scroll-indicator-left {
  left: 15%;
  animation: bounce-arrow-left 2s ease-in-out infinite;
}

.scroll-indicator-right {
  right: 15%;
  animation: bounce-arrow-right 2s ease-in-out infinite 0.3s;
}

.scroll-indicator:hover svg {
  filter: drop-shadow(0 0 16px rgba(94, 176, 49, 1)) drop-shadow(0 0 32px rgba(94, 176, 49, 0.8));
}

.scroll-indicator svg {
  width: 40px;
  height: 40px;
  stroke: var(--neon-green);
  filter: drop-shadow(0 0 12px rgba(94, 176, 49, 0.8)) drop-shadow(0 0 24px rgba(94, 176, 49, 0.6));
  transition: all 0.3s ease;
}

@keyframes bounce-arrow-left {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes bounce-arrow-right {

  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(15px);
  }
}

/* Responsive mobile */
@media (max-width: 788px) {
  .scroll-indicator-left {
    left: 20%;
  }

  .scroll-indicator-right {
    right: 20%;
  }

  .scroll-indicator svg {
    width: 32px;
    height: 32px;
  }
}

/* DOCTOR PORTRAIT */
.doctor-portrait {
  text-align: center;
  margin-bottom: 1rem;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.portrait-image {
  max-width: 250px;
  height: auto;
  transition: all 0.4s ease;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.portrait-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(94, 176, 49, 0.4));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes portrait-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(94, 176, 49, 0.2));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(94, 176, 49, 0.3));
  }
}

/* MEDICAL TOOLS */
.medical-tools {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.tools-image {
  max-width: 180px;
  height: auto;
  transition: all 0.4s ease;
}

.tools-image:hover {
  transform: rotate(5deg) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(94, 176, 49, 0.4));
}



/* DROP ANIMATION */
.drop-container {
  text-align: center;
  margin-bottom: 0;
  margin-top: -3rem;
  padding-top: 3rem;
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.drop {
  width: 14px;
  height: 14px;
  background: var(--neon-green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(135deg);
  animation: drop-fall 10s ease-in infinite;
  position: absolute;
  top: 30px;
  left: 49.8%;
  margin-left: -5px;
}

.drop::before {
  content: "";
  position: absolute;
  top: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  opacity: 0.6;
}

@keyframes drop-fall {
  0% {
    top: 15px;
    opacity: 0;
    transform: rotate(135deg) scale(0.5);
  }

  3% {
    opacity: 1;
    transform: rotate(135deg) scale(1);
  }

  22% {
    opacity: 1;
    transform: rotate(135deg) scale(1);
  }

  25% {
    top: 98px;
    opacity: 0;
    transform: rotate(135deg) scale(0.7);
  }

  100% {
    top: 100px;
    opacity: 0;
    transform: rotate(135deg) scale(0.5);
  }
}

/* CONTENT SECTIONS */
.content-section {
  padding: 2rem 0;
  position: relative;
}

.content-section.dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(94, 176, 49, 0.5);
}

@keyframes title-pulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(94, 176, 49, 1),
      0 0 40px rgba(94, 176, 49, 0.8),
      0 0 60px rgba(94, 176, 49, 0.6);
  }

  50% {
    text-shadow: 0 0 30px rgba(94, 176, 49, 1),
      0 0 60px rgba(94, 176, 49, 0.9),
      0 0 90px rgba(94, 176, 49, 0.7),
      0 0 120px rgba(94, 176, 49, 0.5);
  }
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 1.5rem;
}

.text-content strong {
  color: var(--neon-green);
  font-weight: 700;
}

.neon-text {
  color: var(--neon-green);
  font-style: normal;
  text-shadow: 0 0 8px rgba(94, 176, 49, 0.5);
}

/* SPARKLE EFFECT */
.sparkle-name {
  position: relative;
  display: inline-block;
  color: var(--neon-green);
  animation: name-glow 3s ease-in-out infinite;
}

.sparkle {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: sparkle-twinkle 2s ease-in-out infinite;
  pointer-events: none;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
}

.sparkle::before {
  width: 12px;
  height: 2px;
}

.sparkle::after {
  width: 2px;
  height: 12px;
}

@keyframes name-glow {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes sparkle-twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  20% {
    opacity: 1;
    transform: scale(1) rotate(90deg);
  }

  40%,
  80% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* SIGNATURE DU DOCTEUR */
.doctor-signature {
  text-align: center;
  margin-top: -3rem;
  padding-right: 0;
  animation: signature-appear 1s ease-out;
}

.signature-image {
  width: 180px;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.signature-image:hover {
  opacity: 1;
  transform: scale(1.02);
}

@keyframes signature-appear {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .doctor-signature {
    text-align: center;
    padding-right: 0;
  }

  .signature-image {
    width: 140px;
  }
}

/* ELECTRIC FRANKENSTEIN EFFECT */
.electric-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bolt {
  position: absolute;
  background: linear-gradient(90deg,
      transparent,
      var(--neon-green) 30%,
      var(--white) 50%,
      var(--neon-green) 70%,
      transparent);
  filter: brightness(1.5);
  opacity: 0;
  animation: electric-bolt 3s ease-in-out infinite;
}

.bolt-1 {
  top: 10%;
  right: 35%;
  width: 50px;
  height: 4px;
  transform: rotate(-45deg);
  animation-delay: 0s;
}

.bolt-2 {
  top: 50%;
  left: 30%;
  width: 45px;
  height: 4px;
  transform: rotate(20deg);
  animation-delay: 0.3s;
}

.bolt-3 {
  bottom: 15%;
  right: 38%;
  width: 50px;
  height: 4px;
  transform: rotate(-50deg);
  animation-delay: 0.6s;
}

/* ZIGZAG MAIN BOLT */
.bolt-4a,
.bolt-4b,
.bolt-4c {
  filter: brightness(2);
  animation: electric-bolt-main 2.5s ease-in-out infinite;
}

.bolt-4a {
  top: 15%;
  right: 25%;
  width: 35px;
  height: 6px;
  transform: rotate(-60deg);
}

.bolt-4b {
  top: 35%;
  left: 20%;
  width: 30px;
  height: 6px;
  transform: rotate(45deg);
}

.bolt-4c {
  bottom: 20%;
  right: 22%;
  width: 35px;
  height: 6px;
  transform: rotate(-55deg);
}

@keyframes electric-bolt-main {

  0%,
  88%,
  100% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0.3;
  }

  92% {
    opacity: 1;
  }

  93% {
    opacity: 0.5;
  }

  94% {
    opacity: 1;
  }

  95% {
    opacity: 0.2;
  }

  96% {
    opacity: 1;
  }

  98% {
    opacity: 0;
  }
}




@keyframes electric-bolt {

  0%,
  90%,
  100% {
    opacity: 0;
  }

  92% {
    opacity: 1;
  }

  94% {
    opacity: 0;
  }

  96% {
    opacity: 0.8;
  }

  98% {
    opacity: 0;
  }
}


.project-highlight {
  background-color: rgba(0, 255, 132, 0.05);
  border-left: 3px solid var(--neon-green);
  padding: 1.5rem;
  margin: 2rem 0;
}

/* PROJECT ICONS */
.project-icon {
  margin-left: 0.5rem;
  color: var(--neon-green);
  font-size: 1.2rem;
  display: inline-block;
}

.vacuum-icon {
  animation: vacuum-pulse 2s ease-in-out infinite;
}

.sleep-icon {
  font-style: italic;
  opacity: 0.8;
  animation: sleep-float 3s ease-in-out infinite;
}

@keyframes vacuum-pulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

@keyframes sleep-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-5px) rotate(-5deg);
    opacity: 1;
  }
}

/* PROJECT ICON IMAGES */
.project-icon-img {
  margin-right: 0.4rem;
  display: inline-block;
  vertical-align: baseline;
  filter: brightness(0) saturate(100%) invert(69%) sepia(25%) saturate(927%) hue-rotate(49deg) brightness(95%) contrast(87%);
  transition: all 0.3s ease;
  position: relative;
  top: 6px;
}

.vacuum-icon-img {
  width: 34px;
  height: 34px;
  margin-right: 0.3rem;
}

.sleep-icon-img {
  width: 38px;
  height: 38px;
  top: 10px;
}

/* PLUMKA SIMPLE HOVER */
.plumka-highlight {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plumka-highlight:hover {
  color: var(--neon-green);
}

.plumka-hover-image {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.plumka-highlight:hover .plumka-hover-image {
  opacity: 1;
  visibility: visible;
}

.plumka-hover-image img {
  max-width: 600px;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(94, 176, 49, 0.5);
  border: 2px solid rgba(94, 176, 49, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .plumka-hover-image img {
    max-width: 90vw;
    max-height: 60vh;
  }
}



/* IMDB LINKS WITH BADGES AND TOOLTIPS */
.imdb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.imdb-link strong {
  color: var(--neon-green);
  transition: all 0.3s ease;
}

.imdb-link:hover strong {
  text-shadow: 0 0 8px rgba(94, 176, 49, 0.6);
}

/* IMDB Badge - Discret et élégant */
.imdb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0;
  margin-left: 0;
  background: linear-gradient(135deg, rgba(94, 176, 49, 0.15), rgba(94, 176, 49, 0.25));
  border: 1px solid rgba(94, 176, 49, 0.4);
  border-radius: 4px;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(94, 176, 49, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  white-space: nowrap;
}

.imdb-link:hover .imdb-badge {
  opacity: 1;
  max-width: 8rem;
  padding: 0.15rem 0.4rem;
  margin-left: 0.35rem;
  margin-right: 0.5rem;
  box-shadow:
    0 0 12px rgba(94, 176, 49, 0.4),
    0 0 20px rgba(94, 176, 49, 0.2);
}

/* Tooltip élégant */
.imdb-tooltip {
  display: none;
  /* Désactivé - badge seul suffit */
}

/* Variantes pour différents liens */
.creator-link .imdb-badge {
  background: linear-gradient(135deg, rgba(94, 176, 49, 0.2), rgba(94, 176, 49, 0.3));
}

.film-link .imdb-badge {
  background: linear-gradient(135deg, rgba(94, 176, 49, 0.15), rgba(94, 176, 49, 0.25));
  border-color: rgba(94, 176, 49, 0.5);
  color: var(--neon-green);
  box-shadow: 0 0 8px rgba(94, 176, 49, 0.2);
}

.film-link:hover .imdb-badge {
  box-shadow:
    0 0 12px rgba(94, 176, 49, 0.4),
    0 0 20px rgba(94, 176, 49, 0.2);
}

.film-link .imdb-tooltip {
  color: var(--neon-green);
  border-color: rgba(94, 176, 49, 0.3);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(94, 176, 49, 0.2);
}

/* Animation subtile du badge */
@keyframes badge-pulse {

  0%,
  100% {
    box-shadow:
      0 0 8px rgba(94, 176, 49, 0.2),
      0 0 12px rgba(94, 176, 49, 0.1);
  }

  50% {
    box-shadow:
      0 0 12px rgba(94, 176, 49, 0.3),
      0 0 18px rgba(94, 176, 49, 0.15);
  }
}

.imdb-link:hover .imdb-badge {
  animation: badge-pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .imdb-tooltip {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }

  .imdb-badge {
    font-size: 0.6rem;
    padding: 0.12rem 0.35rem;
  }
}

.manifesto {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  margin: 3rem 0;
  padding: 2rem;
  border-top: 1px solid var(--neon-green);
  border-bottom: 1px solid var(--neon-green);
}

/* WHAT I DO SECTION */
.intro-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 8px rgba(94, 176, 49, 0.5);
}

.pulse-list {
  list-style: none;
  margin: 2rem 0;
}

.pulse-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
  padding-left: 3rem;
}

.ekg-pulse {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  animation: pulse-beat 2s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(94, 176, 49, 0.3);
}

.ekg-pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--neon-green);
  border-radius: 50%;
}

@keyframes pulse-beat {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.method-list {
  list-style: none;
  margin: 2rem 0;
}

.method-list li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}

.highlight-block {
  background-color: rgba(0, 255, 132, 0.05);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid var(--neon-green);
}

.mission {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 3rem;
  padding: 2rem;
}

/* PROTOCOL SECTION */
.protocol-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.protocol-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.protocol-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--gray);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.protocol-card.active {
  border-color: var(--neon-green);
}

.protocol-card.locked {
  opacity: 0.5;
}

.protocol-card.locked:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.card-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--black);
  border: 2px solid var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--neon-green);
}

.protocol-card.locked .card-number {
  border-color: var(--gray);
  color: var(--gray);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 0 8px rgba(94, 176, 49, 0.5);
}

.card-icon {
  height: 35px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.protocol-card.active .card-icon {
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.protocol-card.locked .card-title {
  color: var(--gray-light);
}

.card-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.card-content {
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-content ul {
  list-style: none;
  margin-top: 1rem;
}

.card-content li {
  margin-bottom: 0.5rem;
}

.card-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(94, 176, 49, 0.3);
  text-shadow: 0 0 5px rgba(94, 176, 49, 0.5);
}

.card-button:hover {
  background-color: var(--neon-green);
  color: var(--black);
  box-shadow: 0 0 12px rgba(94, 176, 49, 0.5);
  text-shadow: none;
}

.card-button.locked {
  border-color: var(--gray);
  color: var(--gray);
  cursor: not-allowed;
}

.card-button.locked:hover {
  background-color: transparent;
  color: var(--gray);
  box-shadow: none;
}

.lock-icon {
  margin-right: 0.5rem;
}

.tooltip {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--neon-green);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--neon-green);
}

/* JOBS SECTION */
.jobs-section {
  padding: 6rem 0;
  background-color: rgba(0, 255, 132, 0.02);
  position: relative;
  overflow: hidden;
}

.jobs-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--gray-light);
}

.jobs-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.job-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: rgba(0, 255, 132, 0.03);
  border: 1px solid rgba(0, 255, 132, 0.2);
  transition: all 0.3s ease;
}

.job-item:hover {
  background-color: rgba(0, 255, 132, 0.08);
  border-color: var(--neon-green);
  transform: translateX(10px);
}

.job-icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.job-item:hover .job-icon {
  filter: grayscale(0%);
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-green);
}

.jobs-cta {
  display: inline-block;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.jobs-cta:hover {
  background-color: var(--neon-green);
  color: var(--black);
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  padding: 0 0 2rem;
  border-top: none;
}

/* EKG Separator avant le footer */
.ekg-separator-container {
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ekg-separator {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 200px;
  min-height: 100px;
  display: block;
  object-fit: fill;
  object-position: center;
}

.footer-content {
  text-align: center;
}

/* Footer Elements from Business Card */
.footer-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: -4rem;
  flex-wrap: wrap;
}

.footer-element {
  position: relative;
  transition: all 0.4s ease;
  animation: portrait-glow 3s ease-in-out infinite;
}

.element-image {
  max-width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}

/* Individual element sizing */
.footer-element .element-image {
  width: 200px;
  max-width: 90vw;
}

.social-element .element-image {
  width: 60px;
}

.phone-element .element-image {
  width: 45px;
}

.email-element .element-image {
  width: 65px;
}

/* Hover effects with enhanced glow */
.footer-element:hover .element-image {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 0 50px rgba(94, 176, 49, 1)) drop-shadow(0 0 80px rgba(94, 176, 49, 0.8)) !important;
}

/* Pulse animation on hover */
.footer-element:hover {
  animation: element-pulse 1.5s ease-in-out infinite;
}

@keyframes element-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.footer-email {
  margin-bottom: 1rem;
}

.footer-email a {
  color: var(--neon-green);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-email a:hover {
  opacity: 0.8;
}

.footer-copyright {
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .protocol-cards {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .text-content {
    font-size: 1rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .content-section {
    padding: 4rem 0;
  }

  .tooltip {
    font-size: 0.75rem;
    white-space: normal;
    max-width: 200px;
  }

  /* Footer Elements Responsive */
  .footer-elements {
    flex-direction: column;
    gap: 2rem;
  }

  .social-element .element-image {
    width: 45px;
  }

  .phone-element .element-image {
    width: 35px;
  }

  .email-element .element-image {
    width: 48px;
  }

  /* Portrait and Tools Responsive */
  .portrait-image {
    max-width: 200px;
  }

  .tools-image {
    max-width: 150px;
  }

  /* Enlarge frame and logo on mobile */
  .logo-container img[src*="cadre"] {
    width: 110vw !important;
    height: 120vw !important;
    max-width: 600px !important;
    max-height: 600px !important;
  }

  .hero-image {
    max-width: 92vw !important;
  }

  /* Reduce language buttons on mobile */
  .lang-switcher-container {
    top: 1rem;
    right: 1rem;
    gap: 0.3rem;
  }

  .lang-button {
    width: 36px;
    height: 32px;
  }

  .lang-button .flag-text {
    font-size: 11px;
  }
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* SELECTION COLOR */
::selection {
  background-color: var(--neon-green);
  color: var(--black);
}

/* SCROLL BUTTONS (UP AND DOWN) - ALWAYS VISIBLE */
.scroll-button {
  position: fixed;
  right: 2rem;
  width: 40px;
  height: 40px;
  background-color: var(--neon-green);
  color: var(--black);
  border: 1px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(94, 176, 49, 0.5),
    0 0 20px rgba(94, 176, 49, 0.3);
}

/* Scroll Up Button - positioned at top */
.scroll-up {
  bottom: calc(2rem + 48px);
  /* Position above the down button */
}

/* Scroll Down Button - positioned at bottom */
.scroll-down {
  bottom: 2rem;
}

.scroll-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(94, 176, 49, 0.8),
    0 0 60px rgba(94, 176, 49, 0.5);
  background-color: #5EB031;
}

.scroll-button svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  transition: transform 0.3s ease;
}

.scroll-up:hover svg {
  transform: translateY(-3px);
}

.scroll-down:hover svg {
  transform: translateY(3px);
}

/* Responsive mobile */
@media (max-width: 788px) {
  .scroll-button {
    right: 1.5rem;
    width: 32px;
    height: 32px;
  }

  .scroll-up {
    bottom: calc(1.5rem + 40px);
  }

  .scroll-down {
    bottom: 1.5rem;
  }

  .scroll-button svg {
    width: 16px;
    height: 16px;
  }
}