body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  margin-top: 30px;
  font-family: "Bangers", cursive;
  font-size: 3em;
  color: #ff4655;
  text-shadow: 0 0 4px #ff4655, 0 0 8px #4aa1ff;
}

.container {
  max-width: 850px;
  margin: 40px auto;
  background: #111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff4655aa;
  position: relative;
  z-index: 1;
}

.question {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #333;
}

.options button {
  background: #ff4655;
  color: white;
  border: none;
  padding: 10px 14px;
  margin: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Bangers", cursive;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.options button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s;
  pointer-events: none;
}

.options button:hover::after {
  width: 200%;
  height: 500%;
}

.options button.selected {
  box-shadow: 0 0 15px #ffd700;
  transform: scale(1.05);
}

#submitBtn {
  display: block;
  background: #ff4655;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
  margin-top: 20px;
  font-family: "Bangers", cursive;
  transition: 0.3s;
  box-shadow: 0 0 10px #ff4655;
}

#submitBtn:hover {
  box-shadow: 0 0 20px #ffd700, 0 0 25px #4aa1ff;
  transform: scale(1.05);
}

#resultScreen {
  display: none;
  text-align: center;
  font-size: 1.4em;
  animation: heroReveal 1s ease-out forwards;
}

#resultScreen h2 {
  font-family: "Bangers", cursive;
  font-size: 2.5em;
  color: #ffd700;
  text-shadow: 0 0 4px #ffd700, 0 0 8px #ff4655;
}

#result {
  margin-top: 20px;
  font-size: 1.5em;
  color: #ff4655;
  text-shadow: 0 0 4px #4aa1ff;
}

#progress {
  width: 100%;
  background: #222;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

#progressFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4655, #ffd700, #4aa1ff);
  transition: width 0.3s;
}

canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 1000px) {
  h1 {
    font-size: 2em;
    margin: 20px 10px;
  }

  .container {
    padding: 15px;
    margin: 15px 10px;
  }

  .question {
    font-size: 1.5em;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #444;
  }

  .options button {
    width: 100%;
    font-size: 1.3em;
    padding: 15px;
    margin: 8px 0;
  }

  #submitBtn {
    font-size: 1.5em;
    padding: 20px;
  }
}
