html,
body {
  /* font-family: "Jersey 15", serif; */
  font-family: "Poppins", serif;
  background-color: #080116;
  position: relative;
  overflow-x: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(109, 40, 217, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 30%,
      rgba(167, 139, 250, 0.15) 0%,
      transparent 45%
    );
  z-index: -2;
}

.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  animation: sparkle-animation 3s infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #d4c0ff, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient 5s ease infinite;
}

.glass-effect {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.light-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  animation: float 8s infinite ease-in-out;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes sparkle-animation {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.stats-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
}

/* Autres styles inchangés */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes sparkle-animation {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* .jersey {
  font-family: "Jersey 15", serif;
} */

.technos.section {
  transition: opacity 0.5s ease-in-out;
  display: none;
  opacity: 0;
}
.technos.section.active {
  display: grid;
  opacity: 1;
}
.tech-item {
  transition: transform 0.3s ease-in-out;
}
.tech-item:hover {
  transform: translateY(-5px);
}

.experiences .card-hover {
  transition: all 0.3s ease-in-out;
}
.experiences .card-hover:hover {
  /* background-color: rgb(124, 58, 237); */
  background-color: #581c87;
  transform: translateY(-4px);
}

#rocket {
  width: 200px;
  height: 200px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 1000;
}

/* Styles pour le loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-text {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: transparent;
}

.loader-text span {
  display: inline-block;
  color: white;
  opacity: 0;
}
