* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background-image: url("../images/bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'DM Sans', sans-serif;
}

.container {
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  background-color: white;
  padding: 10px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  z-index: 11;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.logo-container img {
  width: 60px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-container.scrolled {
  width: 100px;
  padding: 6px;
  border-radius: 0 0 20px 20px;
}

.logo-container.scrolled img {
  width: 40px;
}

@media (max-width: 450px) {
  .logo-container {
    width: 100px;
    left: 20px;
    transform: unset;
    top: 10px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .logo-container img {
    height: 35px;
    width: auto;
  }
  .logo-container.scrolled {
    border-radius: 30px;
  }
}

.lang-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 100;
}

.lang-btn {
  padding: 8px 16px;
  border: 2px solid rgba(1, 166, 241, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #5a7089;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #01a6f1;
  color: #01a6f1;
}

.lang-btn.active {
  background: linear-gradient(135deg, #01a6f1 0%, #00d043 100%);
  border-color: transparent;
  color: #ffffff;
}

.plugs-container {
  top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.plug-left, .plug-right {
  width: 50%;
  display: flex;
  position: relative;
}

.plug-left {
  animation: plugLeftMove 4s ease-in-out infinite;
}

.plug-right {
  animation: plugRightMove 4s ease-in-out infinite;
}

@keyframes plugLeftMove {
  0%, 100% { transform: translateX(-25px); }
  40%, 60% { transform: translateX(0); }
}

@keyframes plugRightMove {
  0%, 100% { transform: rotateY(180deg) translateX(-25px); }
  40%, 60% { transform: rotateY(180deg) translateX(0); }
}

.sparks-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 0;
  height: 0;
}

.spark-1 {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 22px solid #01a6f1;
  top: 15px;
  left: 12px;
  animation: sparkFloat1 1.8s ease-in-out infinite;
}

.spark-2 {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 18px solid #00d043;
  top: 8px;
  right: 18px;
  animation: sparkFloat2 1.5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.spark-3 {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 26px solid #afe6ff;
  bottom: 30px;
  left: 8px;
  animation: sparkFloat3 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

.spark-4 {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 20px solid #20ff4a;
  bottom: 20px;
  right: 15px;
  animation: sparkFloat4 1.6s ease-in-out infinite;
  animation-delay: 0.3s;
}

.spark-5 {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 14px solid #0c5aad;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: sparkFloat5 1.3s ease-in-out infinite;
  animation-delay: 0.1s;
}

.spark-6 {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 16px solid #0d6f05;
  top: 40%;
  right: 5px;
  animation: sparkFloat6 1.7s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes sparkFloat1 {
  0%, 100% { 
    opacity: 0;
    transform: translateY(0) scale(0.3);
  }
  15% {
    opacity: 1;
    transform: translateY(-8px) scale(1);
  }
  30% {
    opacity: 1;
    transform: translateY(-12px) scale(1.1);
  }
  50% {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
  }
}

@keyframes sparkFloat2 {
  0%, 100% { 
    opacity: 0;
    transform: translateY(5px) scale(0.2) rotate(10deg);
  }
  20% {
    opacity: 1;
    transform: translateY(-5px) scale(1) rotate(-5deg);
  }
  45% {
    opacity: 0.8;
    transform: translateY(-15px) scale(0.9) rotate(5deg);
  }
  60% {
    opacity: 0;
    transform: translateY(-25px) scale(0.3) rotate(-10deg);
  }
}

@keyframes sparkFloat3 {
  0%, 100% { 
    opacity: 0;
    transform: translateY(10px) scale(0.4);
  }
  25% {
    opacity: 1;
    transform: translateY(0) scale(1.15);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-10px) scale(1);
  }
  70% {
    opacity: 0;
    transform: translateY(-18px) scale(0.4);
  }
}

@keyframes sparkFloat4 {
  0%, 100% { 
    opacity: 0;
    transform: translateY(8px) scale(0.3) rotate(-15deg);
  }
  10% {
    opacity: 1;
    transform: translateY(0) scale(1.1) rotate(0deg);
  }
  35% {
    opacity: 1;
    transform: translateY(-12px) scale(0.95) rotate(10deg);
  }
  55% {
    opacity: 0;
    transform: translateY(-22px) scale(0.2) rotate(15deg);
  }
}

@keyframes sparkFloat5 {
  0%, 100% { 
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -60%) scale(1.2);
  }
  40% {
    opacity: 0.7;
    transform: translate(-50%, -75%) scale(0.8);
  }
  55% {
    opacity: 0;
    transform: translate(-50%, -90%) scale(0.3);
  }
}

@keyframes sparkFloat6 {
  0%, 100% { 
    opacity: 0;
    transform: translateY(5px) scale(0.4) rotate(5deg);
  }
  15% {
    opacity: 1;
    transform: translateY(-3px) scale(1) rotate(-8deg);
  }
  40% {
    opacity: 0.9;
    transform: translateY(-14px) scale(1.05) rotate(3deg);
  }
  60% {
    opacity: 0;
    transform: translateY(-24px) scale(0.3) rotate(-5deg);
  }
}

.plug-right {
  transform: rotateY(180deg);
}

.plug-left .plug-theme1 {
  fill: #afe6ff;
  background-color: #afe6ff;
}
.plug-left .plug-theme2 {
  fill: #01a6f1;
  background-color: #01a6f1;
}
.plug-left .plug-theme3 {
  fill: #0c5aad;
  background-color: #0c5aad;
}

.plug-right .plug-theme1 {
  fill: #20ff4a;
  background-color: #20ff4a;
}
.plug-right .plug-theme2 {
  fill: #00d043;
  background-color: #00d043;
}
.plug-right .plug-theme3 {
  fill: #0d6f05;
  background-color: #0d6f05;
}

.content {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 670px;
  margin-top: 300px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  position: relative;
  z-index: 1;
}

.blob {
  position: absolute;
  top: 50%;
  width: 220px;
  height: 340px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

.blob-left {
  left: -160px;
  background: linear-gradient(180deg, rgba(1, 166, 241, 0.8) 0%, rgba(175, 230, 255, 0.6) 50%, rgba(12, 90, 173, 0.8) 100%);
  border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
  animation: blobMorphLeft 6s ease-in-out infinite;
}

.blob-right {
  right: -140px;
  top: 60%;
  width: 180px;
  height: 280px;
  background: linear-gradient(180deg, rgba(0, 208, 67, 0.8) 0%, rgba(32, 255, 74, 0.6) 50%, rgba(13, 111, 5, 0.8) 100%);
  border-radius: 45% 55% 40% 60% / 50% 50% 50% 50%;
  animation: blobMorphRight 6s ease-in-out infinite;
}

@keyframes blobMorphLeft {
  0%, 100% {
    border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
    transform: translateY(-50%) rotate(0deg);
  }
  25% {
    border-radius: 45% 55% 60% 40% / 60% 40% 50% 50%;
    transform: translateY(-48%) rotate(-2deg);
  }
  50% {
    border-radius: 50% 50% 45% 55% / 45% 55% 60% 40%;
    transform: translateY(-52%) rotate(1deg);
  }
  75% {
    border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
    transform: translateY(-49%) rotate(-1deg);
  }
}

@keyframes blobMorphRight {
  0%, 100% {
    border-radius: 45% 55% 40% 60% / 50% 50% 50% 50%;
    transform: translateY(-50%) rotate(0deg);
  }
  25% {
    border-radius: 55% 45% 50% 50% / 45% 55% 60% 40%;
    transform: translateY(-52%) rotate(2deg);
  }
  50% {
    border-radius: 40% 60% 55% 45% / 55% 45% 45% 55%;
    transform: translateY(-48%) rotate(-1deg);
  }
  75% {
    border-radius: 50% 50% 60% 40% / 60% 40% 55% 45%;
    transform: translateY(-51%) rotate(1deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a2e4a;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.title-highlight {
  background: linear-gradient(135deg, #01a6f1 0%, #00d043 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  background: linear-gradient(135deg, #01a6f1 0%, #00d043 100%);
  color: white;
  display: inline-block;
  padding: 2px 15px;
}

.subtitle {
  font-size: 1.3rem;
  color: #5a7089;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #01a6f1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.message {
  font-size: 1.05rem;
  color: #6b7c93;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contact-sub-infos-list, .contact-sub-infos-buttons {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  justify-content: center;
}

.contact-sub-infos-list {
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .contact-section {
    flex-direction: column;
    gap: 10px;
  }

  .contact-sub-infos-list, .contact-sub-infos-buttons {
    flex-direction: column;
  }

  .contact-sub-infos-list {
    gap: 30px
  }
}

.contact-text {
  font-size: 0.95rem;
  color: #8a9bb0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  background: linear-gradient(135deg, #01a6f1 0%, #00d043 100%);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(1, 166, 241, 0.3);
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(1, 166, 241, 0.4);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.contact-link:hover svg {
  transform: translateX(4px);
}

.footer {
  margin-top: auto;
  padding: 30px;
  text-align: center;
}

.footer-text {
  font-size: 0.85rem;
  color: #a0aec0;
}

@media (max-width: 900px) {
  .plugs-container {
    transform: scale(0.8);
  }
  .plug-left {
    position: relative;
    left: -100px;
  }
  .plug-right {
    position: relative;
    right: -100px;
  }
  
  .title {
    font-size: 2.4rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }

  .blob {
    width: 180px;
    height: 280px;
  }

  .blob-left {
    left: -130px;
  }

  .blob-right {
    right: -130px;
  }
}

@media (max-width: 600px) {
  .lang-selector {
    top: 10px;
    right: 10px;
    gap: 5px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .plugs-container {
    transform: scale(0.75);
    margin-top: -50px;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .message {
    font-size: 0.95rem;
  }
  
  .content {
    padding: 40px 20px 30px;
    margin-top: 250px;
  }

  .blob {
    width: 140px;
    height: 220px;
  }

  .blob-left {
    left: -100px;
  }

  .blob-right {
    right: -100px;
  }
}

@media (max-width: 450px) {
  .plugs-container {
    transform: scale(0.7);
    margin-top: -70px;
  }

  .content {
    margin-top: 200px;
  }
}
