body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
}
.wheel-container .background-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 10px solid #7952b3;
  z-index: 0;
}
.wheel-container .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 2;
  text-align: center;
  vertical-align: center;
  cursor: pointer;
}
.wheel-container .center-circle span {
  display: block;
  vertical-align: baseline;
  padding-top: 8px;
  margin-top: 10px;
}
.wheel-container .wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 5s ease-out;
  background: conic-gradient(#7952b3 0deg 30deg, #9b72cb 30deg 60deg, #b998d9 60deg 90deg, #d4b8e6 90deg 120deg, #e6d1f2 120deg 150deg, #b3a2d9 150deg 180deg, #8e7cc3 180deg 210deg, #6b5ba6 210deg 240deg, #584a8c 240deg 270deg, #7965a8 270deg 300deg, #9b87c3 300deg 330deg, #c2b3e0 330deg 360deg);
  z-index: 1;
}
.wheel-container .slice {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 5;
}
.wheel-container .label {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: bold;
  z-index: 6;
  pointer-events: none;
}
.wheel-container .pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 45px solid #82a905;
  z-index: 10;
}

.start-btn {
  margin-top: 50px;
  padding: 10px 40px;
  font-size: 18px;
  cursor: pointer;
  background-color: #82a905;
  border: none;
  color: #ffffff;
  border-radius: 5px;
  transition: background 0.1s linear;
}
.start-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}
.start-btn.pressed {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.highlighted {
  font-weight: bold;
  text-shadow: 2px 2px 4px #e6d1f2;
}

.key-link {
  margin-top: 10px;
  font-size: 16px;
  color: #7952b3;
  text-decoration: none;
  padding: 10px;
}

#klContainer {
  display: none;
  margin-top: 1em;
}
#klContainer.visible {
  display: block;
}

#t {
  border: none;
  width: auto;
  text-align: right;
  max-width: 2em;
  margin-right: 0;
  padding-right: 0;
}

#tt {
  margin-left: 0;
  padding-left: 0;
  display: inline-block;
}

/*# sourceMappingURL=random.css.map */
