@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.loader .circle {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #4a6bff;
  animation: bounce 1.5s infinite ease-in-out;
}
.loader .circle:nth-child(1) {
  animation-delay: 0s;
}
.loader .circle:nth-child(2) {
  animation-delay: 0.2s;
}
.loader .circle:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #4a6bff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #212529;
}

.message {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sub-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(51, 51, 51, 0.8);
}

.countdown {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.countdown .countdown-item {
  margin: 0 1rem;
  min-width: 80px;
}
.countdown .countdown-item span {
  display: block;
}
.countdown .countdown-item span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a6bff;
}
.countdown .countdown-item span.label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(51, 51, 51, 0.7);
}

.newsletter {
  margin: 3rem 0;
}
.newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .newsletter form {
    flex-direction: column;
  }
}
.newsletter form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(74, 107, 255, 0.3);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.newsletter form input:focus {
  border-color: #4a6bff;
}
@media (max-width: 576px) {
  .newsletter form input {
    margin-bottom: 1rem;
  }
}
.newsletter form button {
  padding: 0.8rem 1.5rem;
  background-color: #4a6bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}
.newsletter form button:hover {
  background-color: rgb(23, 65.2983425414, 255);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .newsletter form button {
    margin-left: 0;
  }
}

.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4a6bff, #6c63ff);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #6c63ff, #4a6bff);
  bottom: -50px;
  left: -50px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #4a6bff, #8c63ff);
  top: 40%;
  right: 15%;
}

/* Amélioration des liens sociaux */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0.8rem;
  border-radius: 50%;
  color: #4a6bff;
  border: 2px solid #4a6bff;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background-color: #4a6bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 107, 255, 0.4);
}

#support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  padding: 0.8rem 2rem;
  background-color: #4a6bff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
  transition: all 0.3s ease;
}

#support-link i {
  margin-right: 8px;
}

.privacy-note {
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.6);
  margin-top: 0.8rem;
}

.countdown-item span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a6bff;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.countdown-item span.flip {
  transform: translateY(-10px);
  opacity: 0.5;
}

.launch-message {
  color: #4a6bff;
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.team-section {
  margin: 3rem 0;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 2rem;
  color: #4a6bff;
  font-size: 1.8rem;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.team-member {
  width: 280px;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(74, 107, 255, 0.15);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #4a6bff;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .member-avatar img {
  transform: scale(1.1);
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.member-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a6bff;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 1rem;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #4a6bff;
  border: 1px solid #4a6bff;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.member-social a:hover {
  background-color: #4a6bff;
  color: white;
  transform: translateY(-3px);
}

/* Section Partenaires */
.partners-section {
  margin: 4rem 0;
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  --webkit-backdrop-filter: blur(5px);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.partners-section h2 {
  margin-bottom: 0.5rem;
  color: #4a6bff;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}
.partners-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #4a6bff;
  border-radius: 3px;
}

.partners-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #333;
  margin-top: 1.5rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-item {
  width: 220px;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.partner-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(74, 107, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
}
.partner-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.partner-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-item:hover .partner-logo {
  transform: scale(1.05);
}

.partner-type {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 1rem;
}

.partner-link {
  display: inline-block;
  color: #4a6bff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.partner-link:hover {
  color: rgb(23, 65.2983425414, 255);
}
.partner-link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.become-partner {
  margin-top: 2rem;
}
.become-partner p {
  margin-bottom: 1rem;
  color: #333;
}

.partner-cta {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #4a6bff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
}
.partner-cta:hover {
  background-color: rgb(23, 65.2983425414, 255);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
}

/* Responsive pour la section partenaires */
@media (max-width: 768px) {
  .partners-grid {
    gap: 1.5rem;
  }
  .partner-item {
    width: 100%;
    max-width: 220px;
  }
}
/* Responsive pour la section équipe */
@media (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  .team-member {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }
}
.footer {
  width: 100%;
  padding: 1.5rem 0;
  margin-top: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  --webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(74, 107, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 107, 255, 0.5), transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a6bff;
  margin-bottom: 0.3rem;
}
.footer-logo p {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.7);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.footer-links a {
  color: rgba(51, 51, 51, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #4a6bff;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.6);
}

html, body {
  min-height: 100%;
  position: relative;
}

#music-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(74, 107, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#music-control:hover {
  transform: scale(1.1);
  background-color: rgb(74, 107, 255);
}

.music-icon {
  color: white;
  font-size: 18px;
}

.music-tooltip {
  position: absolute;
  right: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

#music-control:hover .music-tooltip {
  opacity: 1;
}

#volume-control {
  position: fixed;
  bottom: 20px;
  right: 70px;
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

#music-control:hover + #volume-control,
#volume-control:hover {
  opacity: 1;
}

.volume-slider {
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  border-radius: 5px;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}
.volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
}

.music-wave {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.music-wave.active {
  opacity: 1;
}

.wave-bar {
  width: 4px;
  background-color: rgba(74, 107, 255, 0.8);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) {
  height: 10px;
  animation-delay: 0s;
}
.wave-bar:nth-child(2) {
  height: 16px;
  animation-delay: 0.2s;
}
.wave-bar:nth-child(3) {
  height: 24px;
  animation-delay: 0.4s;
}
.wave-bar:nth-child(4) {
  height: 16px;
  animation-delay: 0.6s;
}
.wave-bar:nth-child(5) {
  height: 10px;
  animation-delay: 0.8s;
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}
#music-control, #volume-control, .music-wave {
  pointer-events: auto;
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .message {
    font-size: 1.2rem;
  }
  .countdown .countdown-item {
    margin: 0 0.5rem;
    min-width: 60px;
  }
  .countdown .countdown-item span:first-child {
    font-size: 2rem;
  }
}
/* Animation de pulsation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Amélioration responsive */
@media (max-width: 576px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .social-link {
    margin: 0.5rem;
  }
  #support-link {
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
