body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}
textarea {
  width: 300px;
  height: 100px;
  margin-top: 10px;
}
button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
}
.wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 10px solid #ccc;
  margin: 20px auto;
  overflow: hidden;
  transform: rotate(0deg);
  transition: transform 4s ease-out;
}
.entry {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0% 0%;
  background-color: gray;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  box-sizing: border-box;
  word-break: break-word;
  padding: 2px;
  pointer-events: none;
}
.arrow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid red;
  z-index: 20;
}
.center-button {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #888;
  position: absolute;
  top: 100px;
  left: 100px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  position: relative;
  background: white;
  padding: 30px 20px 20px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  width: 300px;
  text-align: center;
  animation: zoomIn 0.3s ease-in-out;
}
#popupContent {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
.close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: crimson;
  color: white;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  padding: 0;
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
