.hero-wrapper {
  position: relative;
  height: 100vh;
  background: url('../assets/images/gamingg.jpg') center center / cover no-repeat;
}

/* Overlay sombre */
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

/* NAVBAR */
.custom-navbar {
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
  z-index: 1000;
  
}

.lang-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.lang-link i {
  font-size: 18px;
}

.lang-link:hover {
  color: #00f0ff;
}

.lang-text {
  font-size: 14px;
}
.custom-navbar .nav-link {
  color: white;
  font-weight: 500;
  margin: 0 15px;
  letter-spacing: 0.5px;
  position: relative;
  transition: 0.3s;
}

/* Effet soulignement animé */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00f0ff;
  transition: 0.3s;
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .nav-link:hover {
  color: #00f0ff;
}

/* Bouton Télécharger */
.btn-download {
  border: 1px solid white;
  padding: 6px 18px;
  border-radius: 4px;
}

.btn-download:hover {
  background: #00f0ff;
  color: black !important;
}
/* Se connecter */
.login-link {
  color: #00f0ff;
  font-weight: 500;
  text-decoration: none;
}

/* Navbar solide au scroll */
.nav-scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 200px 10%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
}

.btn-hero {
  background: #00f0ff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* Navbar au scroll */
.nav-scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}


