body {
  background-color: #000000; /* fondo negro */
  margin: 0;
  padding: 0;
  color: #d2d44b; /* texto amarillo claro */
}

.vh-100-menos-nav {
  height: calc(100vh - 62px);
}

.historia-background {
  position: relative;
  background:
    radial-gradient(
      ellipse at center, 
      transparent 10%, 
      rgba(0, 0, 0, 0.7) 100%
    ),
    url('../images/el_mito/image11.png') no-repeat center center;
  background-size: cover;
 filter: sepia(0.6) brightness(0.7);
 
}

.datos-juego-bg {
  position: relative;
  overflow: hidden;
}

.datos-juego-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      transparent 10%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url('../images/el_mito/image11.png') no-repeat center center;
  background-size: cover;
  filter: sepia(0.6) brightness(0.7);
  z-index: 0;
}

.datos-juego-bg > * {
  position: relative;
  z-index: 1; /* hace que el contenido quede sobre el fondo */
}

.historia-background p{
color: #ffffff;
}



.custom-bg-box {
  background-color: #afafb0;
}


.custom-text-primary {
  color: #d2d44b ; 
}


/* -------- Carusel -------- */

/* Efecto de superposición oscura para mejor legibilidad */
#carouselElMito::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* carrusel ocupa toda la pantalla */
#carouselElMito {
  position: relative;
}

/* Estilo para las imágenes del carrusel */
.carousel-item img {
  object-fit: cover;
  object-position: center top
}


.carousel-control-prev, 
.carousel-control-next {
  z-index: 10; /* Asegura que estén sobre otros elementos */
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
  width: 3rem; /* Tamaño más grande para mejor usabilidad */
  height: 3rem;
}

/* -------- Historia -------- */

.custom-gap {
  gap: 2rem; /* 32px */
}

.game-data-section {
  position: relative;
  background: url('../images/el_mito/image (6).png') no-repeat center center/cover;
  color: #d2d44b;
  padding: 150px 0;
  overflow: hidden;
}

.game-data-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:

    url('../images/el_mito/frame-2481620_1280.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}


.game-data-section .container {
  position: relative;
  z-index: 1;
}

.historia-container p {
  text-align: justify;
}

.datos-juego-section {
  position: relative;
  background: url('../images/el_mito/image (2).png') no-repeat center center;
  background-size: cover;
  color: #d2d44b;
}

.datos-juego-section::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

.datos-juego-section .container {
  position: relative;
  z-index: 1;
}
