/* ✅ Modal Welcome */
.modal-welcome {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content-welcome {
  background: rgb(1,44,70);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  max-width: 70%;
  box-shadow: 0 0 0 10px yellow, 0 0 0 20px orange;
}
.btn-start {
  background: green;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.btn-start:hover { background: limegreen; transform: scale(1.1); }

/* ✅ Modal Score */
.modal-score {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-score.active { display: flex; }
.modal-content-score {
  background: rgb(1,44,70);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  max-width: 90%;
  box-shadow: 0 0 0 10px yellow, 0 0 0 20px orange;
}
.btn-restart {
  background: green;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.btn-restart:hover { background: limegreen; transform: scale(1.1); }

/* ✅ Modal Exit */
.modal-exit {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-exit.active { display: flex; }
.modal-content-exit {
  background: rgb(1,44,70);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  max-width: 90%;
  box-shadow: 0 0 0 10px yellow, 0 0 0 20px orange;
}
.btn-group-exit {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.btn-exit {
  background: linear-gradient(135deg,#ff4b4b,#d32f2f);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-exit:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(255,0,0,0.5); }
.btn-resume {
  background: linear-gradient(135deg,#00e676,#00c853);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-resume:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,200,83,0.5); }
