* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background-color: #0a0a0a;
    line-height: 1.6;
    height: 100%;
    overflow-x: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    background-color: #1a1a1a;
}

.logo img {
    height: 67px;
    width: 80px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}


nav ul li a:hover {
    color: #9a7445;
}

.btn-jouer {
    background-color: #c3a26f;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-jouer a {
    color: white;
    text-decoration: none;
}

.btn-jouer:hover {
    background-color: #9a7445;
}

.hero {
    min-height: calc(100vh - 97px - 40px); /* Ajuste selon la taille exacte de ton header/footer */
    background-image: url('/New_IMG/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}


.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-telecharger {
    background-color: #c3a26f;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-telecharger a {
    color: white;
    text-decoration: none;
}

.btn-telecharger:hover {
    background-color: #9a7445;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px 20px;
    background-color: #121212;
}

.feature {
    max-width: 300px;
    text-align: center;
    color: white;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff4655;
}

.feature p {
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    font-size: 0.9rem;
    color: white;
}



body {
  background-color: #0e0e0e;
  color: #f0f0f0;
  font-family: 'Nunito', sans-serif;
  margin: 0;

  text-align: center;
}

h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #ffffff;
}















.button {
  position: relative;
  background-color: transparent;
  color: #e8e8e8;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  width: 250px;
  height: 75px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);
  transition: all 0.3s ease;
}



/* Couche grise visible au repos */
.button::after {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0%);
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Couche en gradient (hover) */
.button::before {
  content: attr(data-hover);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #669743, #237874);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.button:hover::before {
  transform: translateY(0%);
}

.button:hover::after {
  transform: translateY(-100%);
}

.button:focus {
  outline: none;
}

.button:active {
  transform: scale(0.97);
}



.down-buttons {

display: flex;
flex-direction: column;
align-items: center;
gap: 4rem; 
margin-bottom: 3rem;

}