/* ============================= */
/* 🔵 FRONT-PAGE PERSONALIZADO 🔵 */
/* ============================= */

/* Fondo global */
body {
  background-color: #0f0f0f;
  color: #ffffff;
  box-sizing: border-box;
}

/* Banner principal */
.banner-principal img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

/* Contenedor principal */
.contenido-principal {
  max-width: 1400px;
  margin: 30px auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
}

/* Títulos de sección */
.contenido-principal h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  border-left: 5px solid #f0c040;
  padding-left: 10px;
}

/* Grids */
.grid-ultimos,
.grid-hentai,
.grid-games-3d,
.grid-jav,
.grid-sin-censura,
.grid-pelicula,
.grid-gallery,
.grid-musica_ost {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-start;
}

/* Tarjetas individuales */
.episode-item,
.hentai-item,
.games-3d-item,
.jav-item,
.sin-censura-item,
.pelicula-item {
  background-color: rgba(30, 30, 30, 0.95);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  width: 250px;
  box-sizing: border-box;
}

/* Hover */
.episode-item:hover,
.hentai-item:hover,
.games-3d-item:hover,
.jav-item:hover,
.sin-censura-item:hover,
.pelicula-item:hover {
  transform: scale(1.02);
}

/* Imagenes */
.episode-item img,
.hentai-item img,
.games-3d-item img,
.jav-item img,
.sin-censura-item img,
.pelicula-item img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Título de cada item */
.episode-item h3,
.hentai-item h3,
.games-3d-item h3,
.jav-item h3,
.sin-censura-item h3,
.pelicula-item h3,
.gallery-item h3,
.musica_ost-item h3 {
  font-size: 18px !important;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}

/* Botón ACTUALIZADO */
.episode-item .estado,
.hentai-item .estado,
.games-3d-item .estado,
.jav-item .estado,
.sin-censura-item .estado,
.pelicula-item .estado {
  display: inline-block;
  background-color: #f1c40f;
  color: #222;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
}

/* Nuevos tipos: Gallery y Música OST */
.gallery-item,
.musica_ost-item {
  background-color: rgba(30, 30, 30, 0.95);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  width: 250px;
  box-sizing: border-box;
}

.gallery-item:hover,
.musica_ost-item:hover {
  transform: scale(1.02);
}

.gallery-item img,
.musica_ost-item img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.gallery-item h3,
.musica_ost-item h3 {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}

/* ============================= */
/* 🔹 SIDEBAR Y DISTRIBUCIÓN 🔹 */
/* ============================= */

.contenedor-con-sidebar {
  display: flex;
  gap: 30px;
  align-items: stretch;
  max-width: 1600px;
  margin: 30px auto;
  padding: 0 30px;
}

.contenido-principal {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
}

/* Sidebar solo en front page */
.sidebar-anuncios-front {
  width: 300px;
  position: sticky;
  top: 20px;
  margin-top: 30px;
}

.bloque-anuncio-front {
  background-color: rgba(30, 30, 30, 0.95);
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  color: white;
}

/* Adaptabilidad */
@media screen and (max-width: 1024px) {
  .contenedor-con-sidebar {
    flex-direction: column;
  }

  .sidebar-anuncios-front {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .bloque-anuncio-front {
    padding: 15px;
    margin: 0 auto 30px auto;
    max-width: 100%;
  }
}

/* Móviles */
@media screen and (max-width: 768px) {
  .contenedor-con-sidebar {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .contenido-principal,
  .sidebar-anuncios-front {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .grid-ultimos,
  .grid-hentai,
  .grid-games-3d,
  .grid-jav,
  .grid-sin-censura,
  .grid-pelicula,
  .grid-gallery,
  .grid-musica_ost {
    justify-content: center;
  }

  .episode-item,
  .hentai-item,
  .games-3d-item,
  .jav-item,
  .sin-censura-item,
  .pelicula-item,
  .gallery-item,
  .musica_ost-item {
    width: 100%;
    max-width: 250px;
  }
}

/* ============================= */
/* 🔹 Títulos clickeables 🔹 */
/* ============================= */

.episode-item a h3,
.hentai-item a h3,
.games-3d-item a h3,
.jav-item a h3,
.sin-censura-item a h3,
.pelicula-item a h3,
.gallery-item a h3,
.musica_ost-item a h3 {
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.2s ease;
}

.episode-item a:hover h3,
.hentai-item a:hover h3,
.games-3d-item a:hover h3,
.jav-item a:hover h3,
.sin-censura-item a:hover h3,
.pelicula-item a:hover h3,
.gallery-item a:hover h3,
.musica_ost-item a:hover h3 {
  color: #f0c040;
}

/* ============================= */
/* 🔹 Badge de tipo de contenido 🔹 */
/* ============================= */

.post-item a,
.episode-item a,
.hentai-item a,
.games-3d-item a,
.jav-item a,
.sin-censura-item a,
.pelicula-item a,
.gallery-item a,
.musica_ost-item a {
    position: relative;
    display: block;
}

.post-type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 20;
    text-transform: uppercase;
}

/* Colores del badge */
.post-item.hentai-item .post-type-badge,
.hentai-item .post-type-badge {
    background-color: #ff5722;
}

.post-item.games-3d-item .post-type-badge,
.games-3d-item .post-type-badge {
    background-color: #2196f3;
}

.post-item.jav-item .post-type-badge,
.jav-item .post-type-badge {
    background-color: #9c27b0;
}

.post-item.sin-censura-item .post-type-badge,
.sin-censura-item .post-type-badge {
    background-color: #e91e63;
}

.post-item.pelicula-item .post-type-badge,
.pelicula-item .post-type-badge {
    background-color: #4caf50;
}

.post-item.gallery-item .post-type-badge,
.gallery-item .post-type-badge {
    background-color: #ff9800;
}

.post-item.musica_ost-item .post-type-badge,
.musica_ost-item .post-type-badge {
    background-color: #3f51b5;
}

/* ============================= */
/* 🔵 ÚLTIMO EPISODIO 🔵 */
/* ============================= */

.episode-item .ultimo-episodio {
    display: block;
    font-size: 14px;
    color: #f0c040;
    margin-top: 5px;
    font-weight: bold;
    text-align: center;
    background-color: rgba(255, 196, 64, 0.15);
    padding: 3px 6px;
    border-radius: 5px;
}

/* 🔵 Front-Page Fin */
