body {
  font-family: 'Luckiest Guy', cursive;
  background: linear-gradient(135deg, #1a1a1a, #893ae9);
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 233, 33, 0.5);
  max-width: 1200px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 span {
  display: block;
}

h1 span:first-child {
  font-size: 48px;
  color: #ff5722;
}

h1 span:last-child {
  font-size: 36px;
  color: #ffd700;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
}

.question {
  margin-bottom: 20px;
}

.options button {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  font-size: 18px;
  color: #fff;
  background-color: #ff5722;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-family: 'Luckiest Guy', cursive;
}

.options button:hover {
  background-color: #e64a19;
  transform: scale(1.05);
}

#result {
  display: none;
}

#result.hidden {
  display: none;
}

#result:not(.hidden) {
  display: block;
}

#result h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  animation: glow 2s infinite alternate;
}

.jackpot-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#big {
  width: 100%;
  height: auto;
  display: block;
  animation: glow 2s infinite alternate;
}

#changeTextParent {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 55%;
  max-width: 220px;
  height: auto;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 3px solid #e3c72c;
  border-radius: 10px;
  background: black;
}

#changeText {
  font-size: 24px;
  color: #e3c72c;
  text-align: center;
  padding: 5px 10px;
  font-family: 'Luckiest Guy', cursive;
  animation: glow 2s infinite alternate;
  white-space: nowrap;
  min-width: 100%;
  box-sizing: border-box;
}

#bonusText {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Luckiest Guy', cursive;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

#bonusText strong {
  color: #ffd700;
  font-size: 28px;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 1px #ffd700, 0 0 1px #ffd700, 0 0 1px #ffd700;
  }
  100% {
    text-shadow: 0 0 5px #ff5722, 0 0 5px #ff5722, 0 0 1px #ff5722;
  }
}

#claimBonus {
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  background-color: #ff5722;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-family: 'Luckiest Guy', cursive;
  animation: pulse 1.5s infinite;
}

#claimBonus:hover {
  background-color: #e64a19;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.bonus-info {
  font-size: 16px;
  margin-top: 10px;
  color: #ffd700;
  font-family: 'Roboto', sans-serif;
}

.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .container {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-size: 28px;
  }

  h1 span:first-child {
    font-size: 36px;
  }

  h1 span:last-child {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .options button {
    font-size: 16px;
    padding: 12px;
  }

  #result h2 {
    font-size: 30px;
  }

  #bonusText {
    font-size: 20px;
  }

  #claimBonus {
    font-size: 18px;
    padding: 12px 24px;
  }

  .bottom {
    padding-bottom: 50px;
  }

  .padding {
    padding-top: 70px;
  }

  .bonus-info {
    padding-top: 30px;
  }
}
