.elementor-20294 .elementor-element.elementor-element-e37ea78{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6ada732 *//* General Styling */
.quiz-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  background: linear-gradient(to right, rgba(255, 223, 0, 0.5), rgba(255, 204, 0, 0.2)), radial-gradient(circle, rgba(255, 215, 0, 0.6) 10%, transparent);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(255, 223, 0, 0.6); /* soft divine glow */
  animation: divineGlow 4s ease-in-out infinite; /* Animate the divine effect */
}

/* Glow Animation */
@keyframes divineGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 223, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 223, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 223, 0, 0.5);
  }
}

/* Adjusting the glow inside the quiz-box */
.quiz-box {
  background: rgba(255, 255, 255, 0.9); /* Slight transparency for a divine window effect */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  position: relative; /* Keeps it in front of the aura effect */
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 450px;
}

/* Adjusting the particles' glow effect */
.aura-effect {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensures particles stay in the background */
}
.badge-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.badge-modal.hidden {
  display: none;
}

.badge-content {
  background: radial-gradient(circle at center, #fffbe6, #fff0b3);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 40px gold, 0 0 80px goldenrod;
  animation: divinePulse 2s infinite ease-in-out;
}

.badge-img {
  width: 120px;
  margin: 20px 0;
  filter: drop-shadow(0 0 15px #ffcc00);
}

@keyframes divinePulse {
  0% { box-shadow: 0 0 20px gold; }
  50% { box-shadow: 0 0 60px goldenrod; }
  100% { box-shadow: 0 0 20px gold; }
}/* End custom CSS */