
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at center, #2a004e, #110025);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.stage {
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 30px;
  background: rgba(18, 0, 41, 0.95);
  border-radius: 15px;
  box-shadow: 0 0 30px #FFD700;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

.banner-top {
  font-size: 2rem;
  color: #FFD700;
  border: 4px solid #FFD700;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px #FFD700;
}

.question-box {
  margin: 20px auto;
  font-size: 1.4rem;
  background: linear-gradient(145deg, #36006b, #1a0035);
  padding: 20px;
  border: 3px solid #FFD700;
  border-radius: 10px;
  color: white;
  box-shadow: 0 0 15px #FFD700;
}

.options-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.option-btn {
  padding: 15px;
  font-size: 1rem;
  color: white;
  background: linear-gradient(to right, #4b0082, #8b00ff);
  border: 3px solid #FFD700;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: inset 0 0 5px #FFD700, 0 0 10px #FFD700;
}

.option-btn:hover {
  background: #5e00b3;
  box-shadow: 0 0 15px #FFD700;
  transform: scale(1.03);
}

.option-btn.correct {
  background-color: green !important;
  border-color: lightgreen;
  box-shadow: 0 0 20px green;
}

.option-btn.wrong {
  background-color: red !important;
  border-color: pink;
  box-shadow: 0 0 20px red;
}

.controls {
  margin-top: 25px;
}

.controls button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #222;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.controls button:hover {
  background-color: #333;
  box-shadow: 0 0 10px #FFD700;
}

#result {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}
