.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(182, 181, 181, 0.185);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-content {
  width: 80vw;
  max-width: 500px;
  background: rgba(252, 252, 252, 0.842);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 20px var(--SHADOW-COLOR);
  color: rgb(32, 32, 32);
  transform: scale(0.6);
  animation: pop-in 0.4s ease-out forwards;
}

#win-modal {
  display: none;
}

#modal-close {
  margin-top: 1.5rem;
  padding: 0.8em 1.5em;
  font-size: 1.1rem;
  background-color: var(--BTN-NEWGAME);
  color: var(--TEXT-COLOR);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

#modal-close:hover {
  transform: scale(1.05);
}

@keyframes pop-in {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  80% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
