html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background: #1f1f1f;
  color: white;
}

header {
  background-color: rgb(70, 25, 70);
  width: 100%;


}

.contenu-header ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contenu-header ul li a {
  display: block;
  padding: 10px 12px;
  background-color: rgba(21, 109, 110, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background-color 0.3s;
  font-size: 0.95rem;
}

.contenu-header ul li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.contenu-header .HomeButton {
  margin-right: auto;
}

/*MAIN*/
main {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  isolation: isolate;
}

.contenu-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  min-height: 760px;
}

.slot-machine {
  width: min(800px, 90vw);
  margin: 0 auto;
  text-align: center;
  color: white;
}

.slot-machine h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 20px 0;
}

.slot-machine p,
button {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  text-align: center;
  color: #f1f1f1;
  margin: 0;
  text-transform: uppercase;
}

.background {
  position: absolute;
  inset: 0;
  background-image: url(../img/BG-SELECT.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(8px);
  z-index: 0;
}


footer {
  flex-shrink: 0;
  width: 100%;
  background-color: rgb(23, 78, 78);
  border-top: 1px dashed #000;
  padding: 12px 0;
}

.footer-service h3 {
  font-size: 20px;
  text-align: center;
  margin: 0 0 15px 0;
  color: white;
}

.footer-service ul.Bonus {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-service ul.Bonus a {
  color: white;
  text-decoration: none;
}

.footer-service ul.Bonus a:hover {
  text-decoration: underline;
}