body {
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: transparent;
}

#backgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 2.5em;
  text-shadow: 0 0 10px #ff00ff;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  text-shadow: 0 0 5px #ff00ff;
  margin-top: -10px;
  margin-bottom: 20px;
}

.roulette-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roulette {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px #ff00ff;
}

.roulette img {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#winner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#winner img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#winnerLink {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
}

#winner.hidden {
  display: none;
}

button {
  background: #ff00ff;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 1.2em;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  text-shadow: 0 0 5px #ff00ff;
}

button:hover {
  background: #ff99ff;
}

.hidden {
  display: none;
}

#addLinkForm input {
  margin: 5px;
  padding: 10px;
  font-size: 1em;
}

/* Play Button Style */
#playButton {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #ff00ff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
  z-index: 2;
}

#playButton:hover {
  background: #ff99ff;
}



















  
  


  
  
  
  





