#winMessage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 10, 0.7);
  display: flex; 
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.win-box {
  background: linear-gradient(145deg, #e7d9b6, #bfa574);
  color: #3c2a1a;
  padding: 30px 40px;
  border: 2px solid #a89264;
  border-radius: 20px;width:200px;box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "serif";
}

.win-box p {
  font-size: 20px;
  margin-bottom: 20px;
}

.win-box button {
  background: #8c6f47;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.win-box button:hover {
  background: #a4895f;
}

.hidden {
  display: none!important;
}