/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #121212;
    color: #fff;
    overflow-x: hidden;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Puedes ajustar esta altura si antes era mayor */
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Asegura separación entre logo+texto y el botón */
    padding: 0 1.2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }
  
  header h1 {
    font-size: 1.2rem;
    color: #fff;
  }
  
  .menu-btn {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
  
  .side-menu {
    position: fixed;
    top: 0; /* PARA QUE NO QUEDE RECORTADO POR EL HEADER */
    left: -270px;
    width: 250px;
    height: 100vh;
    background-color: #1e1e1e;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
    overflow-y: auto; /* si hay mucho contenido, permite hacer scroll dentro */
  }
  
  
  .side-menu.show {
    left: 0;
  }
  
  .side-menu input {
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
  }
  
  .side-menu a {
    text-decoration: none;
    color: #fff;
    background-color: #2a2a2a;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .side-menu a:hover {
    background-color: #444;
  }
  
  main {
    padding: 1rem;
    padding-top: 1rem /* Asegura que el contenido comience debajo del header */
  }
  
  #invicible {
    color: #ffffff00;
  }

  .juego {
    background-color: #1f1f1f;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
  
  .juego:hover {
    background-color: #292929;
  }
  
  .juego h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  
  .juego p {
    font-size: 0.95rem;
    color: #ccc;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Botón volver */
  button {
    background-color: crimson;
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin: 1rem;
    transition: background 0.3s;
  }
  
  button:hover {
    background-color: #d22;
  }
  
  /* Categorías */
  main button {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 1rem auto;
    font-size: 1.2rem;
  }
  
/* Detalles del Juego */
.detalle {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #1f1f1f;
    color: #fff;
  }
  
  .info-juego {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    width: 100%;
  }
  
  .imagen-portada img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  .descripcion-juego {
    flex: 1;
  }
  
  .descripcion-juego h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .descripcion-juego ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .descripcion-juego li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .boton-descarga {
    background-color: #ff6347;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
  }
  
  .boton-descarga:hover {
    background-color: #d44d2f;
  }
  
  /* Galería desplazable */
  .galeria {
    margin-top: 2rem;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .galeria h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .galeria .imagenes {
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .galeria .imagenes img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .galeria .imagenes img:hover {
    transform: scale(1.05);
  }
  
  /* Video */
  .video {
    margin-top: 2rem;
    text-align: center;
  }
  
  .video video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

  /* Estilos de Header */
  header {
    background-color: #1f1f1f;
    padding: 1rem;
    text-align: center;
  }
  
  header h1 {
    color: #fff;
    margin-bottom: 1rem;
  }
  
  header button {
    background-color: crimson;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  header button:hover {
    background-color: #d22;
  }
  
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 10px;
  }
  
  .catalogo .juego {
    background-color: #1b1b1b;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .catalogo .juego:hover {
    transform: scale(1.03);
  }
  
  .catalogo .juego img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .catalogo .juego h2 {
    font-size: 1rem;
    margin: 10px 0;
    color: white;
  }
  
  .catalogo .ver-detalle {
    display: inline-block;
    margin-top: 5px;
    padding: 6px 12px;
    background-color: #ff3c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .catalogo .ver-detalle:hover {
    background-color: #e03131;
  }
  

  .contacto-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0d0d0d;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .contacto-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgb(255, 255, 255);
    color: #ffffff;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
  }
  
  .contacto-card h1 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #ffffff;
  }
  
  .contacto-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .contacto-lista {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contacto-lista li {
    margin: 10px 0;
    font-size: 15px;
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .contacto-lista li:hover {
    background-color: #333;
  }
  
  .footer-whsiki {
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-top: 2px solid #ffffff;
    box-shadow: 0 -2px 8px rgba(255, 255, 255, 0.3);
    position: relative;
    bottom: 0;
  }
  
  .footer-whsiki p {
    margin: 0;
    color: #ffffff;
    letter-spacing: 1px;
  }
  
  .requisitos-juego {
    margin: 30px auto;
    padding: 0 20px;
    max-width: 800px;
  }
  
  .requisitos-juego h3 {
    color: #ff4444;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
  }
  
  .cuadro-requisitos {
    background-color: #1e1e1e;
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  }
  
  .cuadro-requisitos ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .cuadro-requisitos li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }

.logo-header {
  height: 70px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

header h1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.5rem;
}

#clear-btn {
  background-color: #333;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 14px; /* más pequeño */
  width: 20px;     /* ancho fijo pequeño */
  height: 20px;    /* alto fijo pequeño */
  line-height: 20px; /* para centrar verticalmente el texto */
  text-align: center; /* para centrar horizontalmente */
  cursor: pointer;
  margin-left: -35px;
  margin-right: 10px;
  border-radius: 3px; /* opcional, bordes redondos */
  padding: 0; /* elimina padding extra */
  display: inline-block;
}


/* Estilo para el contenedor de búsqueda */
.buscador-container {
  display: flex;
  align-items: center;
  margin: 20px 0;
  position: sticky;
  top: 0;
  background-color: #1e1e1e;
}

.buscador-container::before {
  content: "";
  position: absolute;
  top: -50px; 
  left: 0;
  right: 0;
  height: 50px;
  background-color: #1e1e1e;
  z-index: -1; 
}

#buscador {
  width: 100%;
  padding: 10px;
  font-size: 18px;
}

#search-btn {
  background-color: #333;
  border: none;
  padding: 8px 12px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
}

#search-btn i {
  color: #fff;
  font-size: 18px;
}


#resultados {
  margin-top: 10px;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  background: #1f1f1f;
  padding: 10px;
  border-radius: 8px;
}

#resultados.show {
  display: grid;
}

#resultados div {
  background: #2a2a2a;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s;
}

#resultados div:hover {
  background: #333;
}

#resultados img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 8px;
}

#resultados p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/* Scroll general de toda la página */
::-webkit-scrollbar {
  width: 10px; /* Ancho de la barra */
}

/* Fondo del scroll (el "canal") */
::-webkit-scrollbar-track {
  background: #1a1a1a; /* Fondo oscuro */
  border-radius: 10px;
}

/* La parte que se mueve (el "thumb") */
::-webkit-scrollbar-thumb {
  background: #555; /* Color del scroll */
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* Borde para que se vea integrado */
}

/* Al pasar el mouse sobre el scroll */
::-webkit-scrollbar-thumb:hover {
  background: #777; /* Se pone un poquito más claro al pasar el mouse */
}

/* 🔍 Estilo para los resultados del buscador */
.result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-bottom: 1px solid #333;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background-color: #1a1a1a;
  transition: background-color 0.2s;
}

.result-item:hover {
  background-color: #2a2a2a;
}

.result-item img {
  width: 10px;
  height: 10px;
  object-fit: cover;
  border-radius: 4px;
}

.imagen-portada {
  position: relative;
  overflow: hidden;
}

.categoria-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ff4444; /* Color rojo intenso para acción */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 10;
  opacity: 1;
  pointer-events: none; /* No bloquea clics */
}

/* Botones de categoría siempre visibles sin tapar contenido */
#categoria-buttons {
  position: sticky;
  top: calc(60px + 10px); /* 60px del menú + 10px de separación */
  background-color:  #121212;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #ffffff;
}

#header1 section.hero {
  position: relative;
  overflow: hidden; /* para que nada sobresalga */
  background: transparent; /* no toca el fondo negro del body */
  /* no height fijo para que se ajuste al contenido */
}

/* Imagen de fondo cubriendo todo el contenedor */
section.hero .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 5; /* más bajo que el contenido, más alto que el fondo */
}

/* Capa de degradado encima de la imagen */
#header1 section.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.4));
  z-index: 1; /* por encima de la imagen */
}

/* Todo el contenido dentro de .hero encima */
section.hero > *:not(.bg-image):not(.overlay) {
  position: relative;
  z-index: 5; /* por encima de todo lo anterior */
  padding: 1rem;
  background-color: rgba(18, 18, 18, 0.342); /* fondo semitransparente */
  border-radius: 1rem;
} 

#header1 {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}

#rojo {
  color: #ff4444;
}

.reseñas {
  background-color: #1a1a1a;
  padding: 40px 20px;
  color: #ccc;
}

.reseñas h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Cada reseña como bloque horizontal */
.review {
  display: flex;
  align-items: flex-start;
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  gap: 20px;
}

/* Avatar a la izquierda, siempre arriba */
.review .avatar {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #444;
}

/* Contenido del texto */
.review-content {
  flex: 1;
}

/* Cabecera: nombre y pulgar */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-header h4 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.review-header .pulgar {
  width: 28px;
  height: 28px;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.resena-text {
  max-height: 120px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}


.ad-container {
  width: 100%;
  max-width: 728px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-container-small {
  width: 100%;
  max-width: 468px;
  height: auto;
  margin: 10px auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#amarillo {
  color: #ffee05;
}

.reseñas .sin-reseñas {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  background-color: #3a3a3a;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reseñas .sin-reseñas p {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.reseñas .sin-reseñas img {
  width: 90px;
  height: 90px;
  opacity: 0.8;
}


/* From Uiverse.io by Sharan-Rohith */ 
.hourglassBackground {
  position: relative;
  background-color: rgb(71, 60, 60);
  height: 130px;
  width: 130px;
  border-radius: 50%;
  margin: 30px auto;
}

.hourglassContainer {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 50px;
  height: 70px;
  -webkit-animation: hourglassRotate 2s ease-in 0s infinite;
  animation: hourglassRotate 2s ease-in 0s infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hourglassContainer div,
.hourglassContainer div:before,
.hourglassContainer div:after {
  transform-style: preserve-3d;
}

@-webkit-keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

@keyframes hourglassRotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(180deg);
  }
}

.hourglassCapTop {
  top: 0;
}

.hourglassCapTop:before {
  top: -25px;
}

.hourglassCapTop:after {
  top: -20px;
}

.hourglassCapBottom {
  bottom: 0;
}

.hourglassCapBottom:before {
  bottom: -25px;
}

.hourglassCapBottom:after {
  bottom: -20px;
}

.hourglassGlassTop {
  transform: rotateX(90deg);
  position: absolute;
  top: -16px;
  left: 3px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #999999;
}

.hourglassGlass {
  perspective: 100px;
  position: absolute;
  top: 32px;
  left: 20px;
  width: 10px;
  height: 6px;
  background-color: #999999;
  opacity: 0.5;
}

.hourglassGlass:before,
.hourglassGlass:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #017268;
  left: -17px;
  width: 44px;
  height: 28px;
}

.hourglassGlass:before {
  top: -27px;
  border-radius: 0 0 25px 25px;
}

.hourglassGlass:after {
  bottom: -27px;
  border-radius: 25px 25px 0 0;
}

.hourglassCurves:before,
.hourglassCurves:after {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #333;
  animation: hideCurves 2s ease-in 0s infinite;
}

.hourglassCurves:before {
  left: 15px;
}

.hourglassCurves:after {
  left: 29px;
}

@-webkit-keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideCurves {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.hourglassSandStream:before {
  content: "";
  display: block;
  position: absolute;
  left: 24px;
  width: 3px;
  background-color: white;
  -webkit-animation: sandStream1 2s ease-in 0s infinite;
  animation: sandStream1 2s ease-in 0s infinite;
}

.hourglassSandStream:after {
  content: "";
  display: block;
  position: absolute;
  top: 36px;
  left: 19px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  animation: sandStream2 2s ease-in 0s infinite;
}

@-webkit-keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@keyframes sandStream1 {
  0% {
    height: 0;
    top: 35px;
  }

  50% {
    height: 0;
    top: 45px;
  }

  60% {
    height: 35px;
    top: 8px;
  }

  85% {
    height: 35px;
    top: 8px;
  }

  100% {
    height: 0;
    top: 8px;
  }
}

@-webkit-keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sandStream2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hourglassSand:before,
.hourglassSand:after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  background-color: white;
  perspective: 500px;
}

.hourglassSand:before {
  top: 8px;
  width: 39px;
  border-radius: 3px 3px 30px 30px;
  animation: sandFillup 2s ease-in 0s infinite;
}

.hourglassSand:after {
  border-radius: 30px 30px 3px 3px;
  animation: sandDeplete 2s ease-in 0s infinite;
}

@-webkit-keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@keyframes sandFillup {
  0% {
    opacity: 0;
    height: 0;
  }

  60% {
    opacity: 1;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 17px;
  }
}

@-webkit-keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}

@keyframes sandDeplete {
  0% {
    opacity: 0;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  1% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  24% {
    opacity: 1;
    top: 45px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  25% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  50% {
    opacity: 1;
    top: 41px;
    height: 17px;
    width: 38px;
    left: 6px;
  }

  90% {
    opacity: 1;
    top: 41px;
    height: 0;
    width: 10px;
    left: 20px;
  }
}


/* Loader fullscreen */
    #loader {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #2a2a2a;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Oculta todo el contenido mientras carga */
    body.loading > #contenido {
      display: none;
    }

    /* Oculta el loader cuando ya no hay loading */
    body:not(.loading) > #loader {
      display: none;
    }


@media (max-width: 600px) {
  .ad-container-small {
    padding: 8px;
    box-sizing: border-box;
  }

  .ad-container-small iframe {
    width: 100% !important;
    height: auto !important;
  }
}


@media (max-width: 768px) {
  .ad-container {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .ad-container iframe {
    width: 100% !important;
    height: auto !important;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review .avatar {
    margin-bottom: 10px;
  }

  .review-header {
    justify-content: center;
    gap: 10px;
  }

  .review-content p {
    font-size: 0.95rem;
  }
}


/* Mejoras para móviles */
@media (max-width: 768px) {
  #categoria-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 8px 10px;
    gap: 8px;
    min-height: 55px; /* 🔥 También en móviles aseguramos la altura */
  }

  #categoria-buttons button {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-header {
    height: 40px;
  }

  header h1 {
    font-size: 1.2rem;
  }
}


  @media (max-width: 600px) {
    .cuadro-requisitos {
      padding: 15px;
    }
  
    .requisitos-juego h3 {
      font-size: 20px;
    }
  
    .cuadro-requisitos li {
      font-size: 15px;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    /* Hacer que el layout de .info-juego se apile verticalmente */
    .info-juego {
      flex-direction: column;
      gap: 1rem;
    }
  
    /* Ajustar la imagen de la portada */
    .imagen-portada img {
      max-width: 100%;
      margin-bottom: 1rem;
    }
  
    /* Ajustar la descripción del juego */
    .descripcion-juego h2 {
      font-size: 1.6rem;
    }
  
    .descripcion-juego li {
      font-size: 1rem;
    }
  
    /* Mejorar la apariencia del botón de descarga */
    .boton-descarga {
      width: 100%;
      font-size: 1rem;
      padding: 1rem;
    }
  
    /* Galería de imágenes - ajustamos las imágenes */
    .galeria .imagenes img {
      max-width: 200px;
      margin-bottom: 1rem;
    }
  
    /* Video - Ajustamos el video para pantallas pequeñas */
    .video video {
      max-width: 100%;
    }
  
    /* Header - Ajustamos el tamaño del título */
    header h1 {
      font-size: 1.5rem;
    }
  
    /* Botón de Volver */
    header button {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
    }
  }
  
  /* Media Queries para pantallas muy pequeñas (como teléfonos de 320px de ancho) */
  @media (max-width: 480px) {
    /* Hacemos los botones más grandes y fáciles de presionar */
    .boton-descarga {
      font-size: 1.2rem;
      padding: 1rem 2rem;
    }
  
    /* Galería: las imágenes se apilan una debajo de otra */
    .galeria .imagenes {
      flex-direction: column;
    }
  
    /* Ajustamos el tamaño de las imágenes en la galería */
    .galeria .imagenes img {
      width: 100%;
      max-width: 100%;
      margin-bottom: 1rem;
    }
  }

/* Contenedor responsive con proporción 16:9 */
.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 50%; /* Relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Estilo para el iframe del video */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  section.video h3 {
    font-size: 1.4rem;
  }

  .video-container {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}

@media (max-width: 480px) {
  section.video {
    padding: 1.5rem 0.5rem;
  }

  section.video h3 {
    font-size: 1.2rem;
  }
}
