html,
body {
  height: 100%;
  margin: 0;
  background: #0d0d0d;
  color: #ff0055;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-content {
    transform: translateY(-100px);
}

h1 {
  color:#ff0055;
  font-size: 4em;
  text-shadow: 0 0 20px #ff0055;
  margin-bottom: 40px;
}

h2 {
    font-size: 1.5em;
    color: #6981f1;
}

#roulette {
  font-size: 4em;
  margin: 40px auto;
  height: 120px;
  min-width: 60%;
  padding: 20px;
  border: 4px solid #ff0055;
  border-radius: 16px;
  background: #1a1a1a;
  box-shadow: 0 0 30px #ff0055;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  font-size: 2em;
  padding: 20px 50px;
  margin: 20px;
  background: #ff0055;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  box-shadow: 0 0 20px #ff0055;
}

button:hover {
  background: #ff3366;
  transform: scale(1.05);
}

#startBtn,
#replayBtn {
  position: fixed;
  bottom: 20px;
  height: 50px;
  padding: 0 20px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#startBtn {
  left: 20px;
  background: #6981f1;
  box-shadow: 0 0 15px #6981f1;
}

#replayBtn {
    left: 20px;
    background: #ff0055;
    box-shadow: 0 0 15px #ff0055;
}

#startBtn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #6981f1;
}

#replayBtn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #ff0055;
}

.support-txt {
    color: #6981f1;
}

.gagnant {
    animation: glowPulse 2s ease infinite, zoomBounce 0.6s ease;
}
  
 .shake {
    animation: shake 0.3s ease;
}
  
.winner-name {
    font-weight: bold;
    color: #6981f1;
    text-shadow: 0 0 10px #6981f1, 0 0 20px #6981f1;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff0055;
  }
  50% {
    text-shadow: 0 0 30px #fff, 0 0 50px #ff0055;
  }
  100% {
    text-shadow: 0 0 10px #fff, 0 0 20px #ff0055;
  }
}

@keyframes zoomBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  75% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0);
  }
}