/* General Reset */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

/* Background Sections */
.inicio-bg,
.instrucciones-bg,
.tusqr-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}

.inicio-bg {
  background-image: url("img/Fondo_inicio.png");
}

.instrucciones-bg {
  background-image: url("img/instrucciones.png");
}

.tusqr-bg {
  background-image: url("img/fondoqr.png");
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly; /* Centra el contenido verticalmente */
}

/* Custom Font */
@font-face {
  font-family: "Gotham Bold";
  src: url("fonts/Gotham-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* Titles */
.title-qr {
  color: white;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: "Gotham Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.title-qr span {
  color: #e84e27;
}

/* Button Styles */
.boton_comenzar,
.boton_escanear,
.btn-continue {
  width: 200px;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.boton_escanear {
  width: 300px; /* Ancho diferente para escanear */
  top: auto !important;
}

/* QR Container */
.container-grid img {
  width: 130px;
  margin: 10px;
}

/* Game Area */
#game-area {
  margin-top: 20px;
}

/* Hidden Elements with Absolute Position */
.check,
#qr-scanner,
.qr1,
.mensaje_ganador,
.mensaje {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.check {
  top: 20%;
}

.mensaje {
  top: 70%;
}

#qr-scanner,
.qr1 {
  top: 45%;
}

.mensaje_ganador {
  top: 40%;
  width: 350px;
}

/* QR Scanner */
#qr-reader {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

#qr-result {
  font-size: 1.5em;
  margin-top: 20px;
  color: #333;
}
