.startScreenCard {
  top: 50%;
  left: 50%;
  width: 70vw;
  max-width: 20rem;
  max-height: 32rem;
  background-color: #111026;
  box-shadow: 0 0 20px rgba(0, 238, 255, 0.788);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  display: none;
  animation: cardAnimation 0.5s 1 ease-in;
}

@keyframes cardAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.GameLogo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.GameLogo img {
  border-radius: 1rem;
  border: 2px solid #00eeffa4;
  width: 6rem;
  height: auto;
}

.modeButton {
  background-color: #0b0a1e;
  border: 2px solid #00eeffb2;
  padding: 0.5rem 0.5rem;
  margin-top: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
}

.buttonIcon img {
  width: 2rem;
}

.btnContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.3rem 0.3rem;
}
