/* ------------------------
   Body et font
------------------------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

/* ------------------------
   Background avec overlay
------------------------- */
body, html {
  height: 100%;
}

.background {
  background-image: url('images/og-image.jpg'); /* chemin vers ton image */
  background-size: cover;        /* couvre toute la page */
  background-position: center;   /* centrée */
  background-repeat: no-repeat;  /* pas de répétition */
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
}

/* Overlay semi-transparent pour lisibilité du texte */
.background::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6); /* noir semi-transparent */
  z-index: 1;
}

/* Contenu au-dessus de l'overlay */
.container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* ------------------------
   Titres et intro
------------------------- */
h1 {
  text-align: center;
  color: #e50914;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
}

/* ------------------------
   Quiz
------------------------- */
.question {
  margin-bottom: 20px;
}

.question h2 {
  font-size: 18px;
}

label {
  display: block;
  margin: 8px 0;
  cursor: pointer;
}

/* ------------------------
   Bouton
------------------------- */
button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background: #e50914;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background: #b20710;
}

/* ------------------------
   Résultat
------------------------- */
.result {
  margin-top: 30px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 6px;
}

.hidden {
  display: none;
}

/* ------------------------
   Zone pub
------------------------- */
.ad-zone {
  margin: 30px 0;
  text-align: center;
}

/* ------------------------
   Footer
------------------------- */
footer {
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
  opacity: 0.7;
}
