:root {
  --main-color: #50f6ff;
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --secondary-color: #1c1c1c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #0e0e0e;
      color: white;
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    nav .logo {
      font-weight: 700;
      font-size: 2rem;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      font-size: 2rem;
      margin: 0;
      padding: 0;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 400;
      font-size: 1.4rem;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #50f6ff;
    }


.hero {
  height: 100vh;
  background: linear-gradient(145deg, var(--bg-color), #111);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 8rem;
  color: var(--main-color);
  animation: fadeInDown 0.7s ease-in-out;
}

.hero p {
  font-size: 2rem;
  margin: 1rem 0;
  max-width: 600px;
  animation: fadeInUp 1s ease-in-out;
}

.btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--main-color);
  color: #000;
  border: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  animation: fadeInUp 1s ease-in-out;
  transition: 0.5s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 4rem 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature img {
  width: 1000px;
}

.feature .text h2 {
  color: var(--main-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

 footer {
      background-color: #0e0e0e;
      color: #ccc;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    footer h4 {
      color: white;
      margin-bottom: 0.5rem;
    }

    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin: 0.25rem 0;
    }

    footer a:hover {
      color: #50f6ff;
    }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0.5;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0.5;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0.5;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  background: white;
  z-index: 2000;
  transition: transform 0.15s ease-out;
}
/* --- Responsive Design --- */



@media (max-width: 1024px) {
  .hero h1 {
    font-size: 5rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  nav {
    display: none;
    gap: 1.5rem;
    font-size: 1.5rem;
  }

  .feature img {
    width: 100%;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature.reverse {
    flex-direction: column;
  }

  .features {
    padding: 2rem 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
  }

  footer {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    font-size: 0.85rem;
    text-align: center;
  }

  .feature .text h2 {
    font-size: 1.5rem;
  }

  .feature .text p {
    font-size: 1rem;
  }

  .cursor {
    display: none; /* désactiver le curseur custom sur mobile */
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  nav .logo {
    font-size: 1.5rem;
  }

  nav ul li a {
    font-size: 1.1rem;
  }
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #5865F2;
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;

  margin-top: 1rem;
  animation: FadeInLeft 0.5s ease-in-out;
  transition: 0.5s ease;
}

.discord-btn:hover {
  background-color: #4752c4;
  transform: scale(1.05);
}


.discord-icon {
  width: 20px;
  height: 20px;
  animation: FadeInLeft 0.5s ease-in-out;
}
