/* === GLOBAL STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: white;
  text-align: center;
  background-color: #000;
}

button {
  padding: 12px 25px;
  font-size: 0.9em;
  background: #FF2E2A;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #A32E2A;
}

/* === INTRO PAGE === */
body.intro {
  background-color: #000;
  background-image: url('../images/backgrounds/15.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.intro-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  z-index: 1;
  position: relative;
}
.intro-container h1 {
  font-size: 1.5em;
}

/* === QUIZ PAGE === */
body.quiz {
  position: relative;
  background-color: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
body.quiz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/backgrounds/15.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.25;
  z-index: 0;
}
.quiz-container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}
.quiz-container h1 {
  font-size: 1.5em;
  color: #FF2E2A;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
button.option {
  background: #FF2E2A;
  border: 1px solid #FF2E2A;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
button.option:hover {
  background: #A32E2A;
  border-color: #A32E2A;
}

/* === RESULTS PAGE === */
body.results {
  background-color: #1b1b1b;
  padding: 40px 20px;
}
.results-container {
  max-width: 600px;
  margin: auto;
}
.results-container h1 {
  font-size: 1.5em;
}
.result-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin: 20px 0;
}
.description {
  font-size: 0.9em;
  margin-bottom: 30px;
}