body {
  background: #fce8ec;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.table-frame {
  position: relative;
  width: 400px;
  height: 400px;
  background: #fddde6;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-container {
  position: relative;
  width: 260px;
  height: 260px;
}

.dot {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot img {
  width: 30px;
  height: 30px;
}

.dot:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.dot:nth-child(2) { top: 21%; left: 85%; transform: translate(-50%, -50%); }
.dot:nth-child(3) { top: 55%; left: 100%; transform: translate(-50%, -50%); }
.dot:nth-child(4) { top: 85%; left: 78%; transform: translate(-50%, -50%); }
.dot:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.dot:nth-child(6) { top: 85%; left: 22%; transform: translate(-50%, -50%); }
.dot:nth-child(7) { top: 55%; left: 0%; transform: translate(-50%, -50%); }
.dot:nth-child(8) { top: 21%; left: 15%; transform: translate(-50%, -50%); }

.center-dice {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.center-dice img {
  width: 60px;
  height: 60px;
}

.start-button {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb6c1, #ff1493);
  box-shadow: 0 0 10px #ff69b4, 0 0 20px #ff1493;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.highlight {
  background-color: red !important;
}