/* Base Styles */
body {
  font-family: 'Georgia', serif;
  background-color: #1a1a1a;
  color: #f5f5f5;
  text-align: center;
  padding: 2rem;
}

/* Countdown Timer */
#countdown {
  font-size: 2rem;
  margin: 1rem 0;
}

/* Section Styling */
#affiliate,
#history,
#trivia,
#costumes {
  margin-top: 2rem;
  background-color: #2c2c2c;
  padding: 1rem;
  border-radius: 8px;
}

/* CTA Button Styling */
.cta-button {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 0 10px #ff6600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 0 20px #ff6600;
  transform: scale(1.05);
}

/* Flying Bat Animation */
.bat {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url('images/bat.png') no-repeat center center;
  background-size: contain;
  animation: flyBat 10s linear infinite;
  z-index: 9999;
}

@keyframes flyBat {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateX(100vw) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(720deg);
    opacity: 0.8;
  }
}

/* Lore Fun Facts List */
ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
  font-size: 1.1em;
  color: #f5f5f5;
}

li::before {
  content: "🕸️ ";
  margin-right: 6px;
}

/* Trivia Quiz Styling */
form#quiz-form {
  max-width: 600px;
  margin: 0 auto;
}

.question {
  margin: 1.5rem 0;
  text-align: left;
  background-color: #2c2c2c;
  padding: 1rem;
  border-radius: 8px;
  color: #f5f5f5;
}

.question p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

label {
  display: block;
  margin: 0.3rem 0;
  cursor: pointer;
}

/* Quiz Result Styling */
#quiz-result {
  font-size: 1.2em;
  margin-top: 15px;
  color: #ff6600;
  font-weight: bold;
  text-align: center;
}

/* Optional: Highlight selected answers (Chrome/Safari only) */
label:has(input[type="radio"]:checked) {
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}
/* Footer Link Styling */
footer a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #ff6600;
}

/* Costume Teaser Section */
#costumes h2 {
  font-family: 'Creepster', cursive;
  font-size: 2em;
  color: #ff00ff;
}

#costumes p {
  font-size: 1.1em;
  color: #f5f5f5;
}

/* 🎃 Responsive Font Scaling for Mobile */
@media (max-width: 600px) {
  body {
    padding: 1rem;
    font-size: 1.1em;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  p,
  li,
  label {
    font-size: 1.2em;
  }

  #countdown {
    font-size: 1.5rem;
  }

  .cta-button,
  a {
    font-size: 1.1em;
    padding: 12px 20px;
  }

  #quiz-result {
    font-size: 1.3em;
  }
}
