.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-container .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-253 .elementor-element.elementor-element-a7b78fe{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-spacer .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-spacer .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-spacer.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-spacer .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-spacer .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-253 .elementor-element.elementor-element-95a7170{--spacer-size:120px;}.elementor-253 .elementor-element.elementor-element-804ca08{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-html .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-html.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-253 .elementor-element.elementor-element-46cd37d > .elementor-widget-container{margin:-150px 0px 0px 0px;}.elementor-253 .elementor-element.elementor-element-a39695c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-253:not(.elementor-motion-effects-element-type-background), body.elementor-page-253 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F0F0F;}/* Start custom CSS for html, class: .elementor-element-46cd37d *//* CONTENEUR GÉNÉRAL */
.intro-screen {
  width: 100%;
  height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CONTENU CENTRAL */
.intro-content {
  text-align: center;
  z-index: 2;
  max-width: 80%;
}

#intro-text {
  font-size: 1.8rem;
  line-height: 1.6;
  opacity: 0.9;
  min-height: 120px;
}

/* BOUTON ENTRER STYLÉ */
#enter-btn {
  position: relative;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  margin-top: 40px;
}

#enter-btn span {
  position: relative;
  z-index: 3;
}

#enter-btn .glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(130,155,255,0.25), transparent 70%);
  animation: rotateGlow 4s linear infinite;
  z-index: 1;
  filter: blur(12px);
}

#enter-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(130,155,255,0.3);
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* CERCLES ANIMÉS EN FOND */
.animated-circles .circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: pulseCircle 8s linear infinite;
}

.circle.one {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle.two {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

.circle.three {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes pulseCircle {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.05;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.05;
  }
}

/* FADE OUT QUAND ON ENTRE */
.intro-screen.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}/* End custom CSS */