.main-menu-container {
    background: #207b3b;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    position: absolute;
    transition: opacity 0.25s;
    width: 100%;
    z-index: 5;
}

.home-logo {
    width: 50%;
}


.game-start {
  background: linear-gradient(to bottom, #97c148, #008e1c); /* vert lumineux */
  border: 8px solid #f3d7b6; /* contour beige clair */
  border-radius: 60px;
  box-shadow:
    inset 0 8px 16px rgba(255, 255, 255, 0.4),  /* brillance intérieure */
    0 10px 0 #a15e3c,                          /* relief 3D de bord */
    0 20px 30px rgba(0, 0, 0, 0.5);            /* ombre portée */
  color: #fff300;
  font-size: 60px;
  font-family: "Buckwheat TC Sans Regular",system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans",
        Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-style: normal;
  text-shadow: 2px 4px #c69262; /* effet 3D texte */
  padding: 10px 40px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.game-start:active {
  transform: translate(-50%, -45%);
  box-shadow:
    inset 0 4px 8px rgba(255, 255, 255, 0.3),
    0 4px 0 #a15e3c,
    0 8px 12px rgba(0, 0, 0, 0.4);
}


  .game-start:disabled {
    cursor: default;
  }
  
  @media only screen and (max-width: 600px) {
    .game-start {
      scale: 0.5;
    }
  }

  .bg-search
  {
    background: linear-gradient(to bottom, #97c148, #008e1c);
  }


  
.btn-valid {
  background: linear-gradient(to bottom, #f0ff00, #4ccf34); /* jaune fluo vers vert */
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 24px;
   font-family: "Buckwheat TC Sans Regular",system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans",
        Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  padding: 12px 40px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.btn-valid:hover {
  transform: scale(1.05);
}

.btn-valid:active {
  transform: scale(0.98);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-valid:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

  
  @media only screen and (max-width: 600px) {
    .btn-valid {
      scale: 0.5;
    }
  }
