/* Fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: lab(8.98% 0.98 0.35);
  color: #fff;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #444444; /* Gris oscuro */
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  color: #000547; /* Negro muy oscuro */
  font-size: 2.5rem;
  margin: 0;
}

header input {
  padding: 10px;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  width: 200px;
  background-color: #ffffff; /* Fondo negro para input */
  color: #000000; /* Texto blanco para contraste */
}


main {
  padding: 0 40px;
}

.gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.gallery::-webkit-scrollbar {
  height: 10px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.movie {
  flex: 0 0 auto;
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}

.movie img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease;
}

.movie h3 {
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
}

.movie:hover {
  transform: scale(1.08);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
}

.modal video {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  outline: none;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  color: white;
}




.destacada {
  position: relative;
  min-height: 100vh;
  background-image: url('culpa.png'); /* aquí va tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.destacada .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-right: 80px;
  box-sizing: border-box;
}

.destacada .contenido {
  max-width: 600px;
  z-index: 1;
}

.logo-streaming {
  width: 200px;
  margin-bottom: 50px;
}

.destacada h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: 'Georgia', serif;
}

.destacada .descripcion {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}

.ver-ahora {
  background-color: #00014d;
  border: none;
  color: white;
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.ver-ahora:hover {
  background-color: #001057;
}

.login-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: transparent;
  z-index: 100;
}

.logo-teplix {
  font-size: 3rem;
  font-weight: bold;
  color: #070242;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 2px 2px 4px black;
}



.perfil-usuario {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 8px 14px;
  border-radius: 5px;
}

/* Estilos para modal */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6); /* Fondo semitransparente */
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  color: white;
  text-align: center;
  position: relative;
}
#modalPerfil {
  display: none;
}

#modalPerfil.abierto {
  display: flex;
  flex-direction: column; /* si lo deseas vertical */
}

#modalPerfil {
  display: none;
  position: fixed;
  top: 70px; /* ajusta si es necesario */
  left: 20px;
  background-color: #141414;
  border-radius: 10px;
  color: white;
  z-index: 99999 !important; /* más alto que todo */
  width: 240px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.close {
  position: absolute;
  top: 10px; right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #fff;
}

#listaPerfilesAdmin {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.perfil-admin {
  background: #222;
  border-radius: 8px;
  padding: 10px;
  width: 140px;
  text-align: center;
  position: relative;
}

.perfil-admin img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 8px;
}

.perfil-admin button.eliminar-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ff4444;
  border: none;
  border-radius: 50%;
  color: white;
  width: 24px;
  height: 24px;
  font-weight: bold;
  cursor: pointer;
}
.avatar-selector-admin img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin: 0 5px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s;
}

.avatar-selector-admin img.selected {
  border-color: #00f;
}
.editar-btn {
  margin-top: 5px;
  padding: 5px 8px;
  background: #0055ff;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}
.perfil.seleccionado {
  animation: zoomPerfil 0.4s forwards;
  z-index: 10;
}

@keyframes zoomPerfil {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.2);
    filter: brightness(1.3);
  }
  100% {
    transform: scale(1);
    filter: brightness(0.8);
    opacity: 0.5;
  }
}
/* Estilos separados del HTML */

/* Opcional: cursor pointer para categorías */
#modalCategorias div[style*="cursor"] {
  cursor: pointer;
}
#modalCategorias div[style*="cursor"]:hover {
  background: #222;
}



/* Estilos del destacado */
#destacado {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Imagen fondo destacado */
#imagenDestacada {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Contenido superpuesto */
.contenidoDestacado {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 1;
  max-width: 60%;
  color: white;
}

.contenidoDestacado h2 {
  font-size: clamp(18px, 4vw, 36px);
  margin: 0 0 10px 0;
}

.contenidoDestacado p {
  font-size: clamp(14px, 2vw, 20px);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.botonesDestacado {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.botonesDestacado button:first-child {
  padding: 10px 20px;
  background: white;
  color: black;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: clamp(12px, 2vw, 16px);
  cursor: pointer;
}

/* Mostrar nombre de usuario */
#perfilUsuario {
  position: fixed;
  top: 20px;
  left: 20px;
  color: white;
  font-weight: bold;
  z-index: 2000;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 2000;
  background: transparent;
}

.header-izquierdo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

#btnPerfil {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

#avatarPerfil {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

header button img {
  width: 24px;
  height: 24px;
}

#inputBuscador {
  display: none;
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid white;
  outline: none;
  font-size: 14px;
  background-color: transparent;
  color: rgb(255, 255, 255);
  width: 180px;
}

nav {
  display: flex;
  gap: 15px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 10px;
}

header h1 {
  margin: 0;
  color: #070b49;
  font-size: 32px;
  font-family: 'Arial Black', sans-serif;
  margin-right: 60px;
  letter-spacing: 1px;
}

/* MODAL DE PERFIL */
#modalPerfil {
  display: none;
  position: fixed;
  top: 60px;
  left: 20px;
  background-color: #141414;
  border-radius: 10px;
  color: white;
  z-index: 9999;
  width: 240px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8);
  font-family: Arial, sans-serif;
}

#listaPerfiles {
  padding: 10px;
  border-bottom: 1px solid #333;
}

.modalOpciones {
  padding: 10px;
}

.modalOpciones > div {
  padding: 8px 0;
  cursor: pointer;
}

.cerrarSesion {
  color: #e50914;
}

/* Perfiles lista */
.perfilItem {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.perfilAvatar {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-right: 10px;
}

/* Modal de Categorías */
#modalCategorias {
  position: fixed;
  top: 80px;
  left: 20px;
  background: #111;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 15px;
  width: 200px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  color: white;
}

.tituloCategorias {
  font-weight: bold;
  margin-bottom: 10px;
}

#modalCategorias div[style*="cursor"] {
  cursor: pointer;
  padding: 5px 0;
}

#modalCategorias div[style*="cursor"]:hover {
  background: #222;
}

.botonCerrarCategorias {
  padding-top: 10px;
  text-align: right;
}

.botonCerrarCategorias button {
  background: #e50914;
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.botonLupa {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.botonLupa img {
  display: block;
  background: transparent !important;
  width: 24px;
  height: 24px;
}

body {
  background-color: #000; /* negro */
  color: white; /* texto blanco por defecto */
  margin: 0;
  font-family: sans-serif;
}
header {
  background-color: #1e1e1e; /* gris oscuro (puedes cambiarlo a otro gris si prefieres) */
  padding: 10px 20px;
}
header h1 {
  font-size: 32px;  /* o el tamaño que desees */
  font-weight: bold;
  color: rgb(6, 58, 172);
  margin-left: 20px; /* ajusta el valor según lo que necesites */
}
nav span {
  cursor: pointer;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav span.activo {
  background-color: #014399; /* o el color que prefieras */
  color: #000;
  font-weight: bold;
  border-radius: 5px;
}

.category {
  margin-bottom: 30px;
}



/* Fondo negro que cubre todo pero no tapa los botones principales */
.fondo-busqueda {
  position: fixed;
  top: 60px; 
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: #000;
  z-index: 500;
  display: none;

  pointer-events: none; /* evita bloquear clics cuando está oculto */
}

/* Cuando se abre el buscador */
.fondo-busqueda.active {
  display: block;
  pointer-events: auto; /* ahora sí bloquea interacción con fondo */
}

/* Caja de resultados como grilla estilo Netflix */
.resultados-busqueda {
  position: fixed;
  top: 90px; 
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background-color: transparent;
  z-index: 550;

  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra las tarjetas en cada fila */
  gap: 25px;
  padding: 20px;

  overflow-y: auto;
  overflow-x: hidden;
}

/* Tarjetas de resultado estilo Netflix con tamaño fijo */
.resultado-item {
  width: 250px;      /* ancho fijo */
  height: 140px;     /* altura fija */
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;    /* no se encogen */
}

.resultado-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.resultado-item:hover {
  transform: scale(1.07);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 10;
}





.modal-busqueda {
  position: fixed;
  background: #616060; /* fondo gris oscuro */
  color: #fff;          /* texto blanco */
  border-radius: 8px;
  padding: 10px;        /* menos padding para compactar */
  max-width: 250px;     /* más estrecho */
  z-index: 600;
  display: none;
  box-shadow: 0 0 10px #000; /* sombra más ligera */
  font-size: 13px;       /* texto más pequeño */
}

/* imagen más pequeña */
.modal-busqueda img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 6px;    /* menos margen */
}

/* botones compactos */
.modal-botones-busqueda {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;              /* menos espacio entre botones */
  justify-content: center;
  width: 100%;
}

.modal-botones-busqueda button {
  flex-basis: 48%;
  max-width: 48%;
  padding: 6px 4px;      /* padding más pequeño */
  font-size: 12px;       /* texto más compacto */
}

.modal-botones-busqueda button:nth-child(3) {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 6px;
  width: 100%;
}

.modal-botones-busqueda button:hover {
  background-color: #555;
}

/* modal expandido más compacto */
.modal-expandido {
  margin-top: 8px;
  background-color: rgba(20, 20, 20, 0.95);
  padding: 10px;         /* menos padding */
  border-radius: 6px;
  color: white;
  max-width: 400px;      /* más estrecho */
  font-size: 13px;       /* texto más pequeño */
}

.modal-expandido h4 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

#listaTemporadas {
  max-height: 150px;      /* menos alto */
  overflow-y: auto;
}

.temporada {
  margin-bottom: 6px;     /* menos espacio */
}

.temporada h5 {
  margin: 3px 0;
  font-weight: bold;
  font-size: 13px;
}

.capitulo {
  margin-left: 12px;
  font-size: 12px;
  color: #ccc;
}













#modalCategorias.modal {
  position: fixed;
  top: 70px; /* MÁS ARRIBA: lo sube cerca del header */
  left: 10px; /* un poco separado del borde izquierdo */
  background: #111;
  color: white;
  padding: 10px 12px; /* Agrega espacio interno */
  border-radius: 10px;
  width: 200px;
  z-index: 900;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
  max-height: 340px; /* LIMITA ALTO para que sea más corto verticalmente */
  overflow-y: auto; /* Si hay muchos botones, que se pueda hacer scroll */
}

.tituloCategorias {
  font-size: 20px; /* Un poco más pequeño */
  font-weight: bold;
  margin-bottom: 8px; /* Espacio controlado */
  margin-top: 0; /* ELIMINA cualquier margen superior */
  color: #ffffff;
  text-align: center;
}

.generos-grid {
  display: flex;
  flex-direction: column;
  gap: 6px; /* Espaciado entre botones más compacto */
}

.generos-grid button {
  background: #222;
  color: white;
  border: 1px solid #444;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: left;
}

.generos-grid button:hover {
  background:#02164d;
  border-color: #1380b3;
}

#cerrarCategorias {
  margin-top: 10px;
  background: transparent;
  color: #ff0000;
  border: none;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

#cerrarCategorias:hover {
  color: white;
}



.footer-info {
  background-color: #02164d;
  color: white;
  padding: 80px 10px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.container-footer {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-info h3 {
  margin-bottom: 8px;
  font-weight: bold;
}

.about {
  flex: 1 1 300px;
}

.social-media {
  flex: 1 1 200px;
}

.social-icons a {
  margin-right: 60px;
  display: inline-block;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons a img {
  width: 100%;
  height: 100%;
  filter: none;
}


.social-icons a:hover {
  transform: scale(1.5);
}














/* Media query para móviles */
@media (max-width: 430px) {

  /* Contenedor principal del header */
  header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    gap: 6px;
    background-color: #111; /* estilo Netflix */
    position: relative; /* importante: no fijo */
    width: 100%;
  }

  /* Logo / Nombre */
  header h1 {
    font-size: 18px;
    margin: 0;
    flex: 0 0 auto;
  }

  /* Menú de navegación */
  nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1 1 100%;
    order: 2; /* debajo del logo */
  }

  nav span {
    padding: 3px 6px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Buscador */
  #inputBuscador {
    flex: 1 1 auto;
    min-width: 80px;
    font-size: 0.8rem;
    padding: 4px 6px;
    order: 3;
  }

  /* Botón de perfil */
  .perfil-btn {
    flex: 0 0 auto;
    order: 4;
  }
}


/* Modal de perfil en móviles - lado izquierdo */
@media (max-width: 430px) {
  #modalPerfil {
    width: 180px;       /* más pequeño */
    top: 50px;          /* un poco más cerca del header */
    left: 10px;         /* alineado a la izquierda */
    right: auto;        /* desactiva alineación a la derecha */
    padding: 8px 10px;  /* menos padding */
    font-size: 12px;    /* texto más pequeño */
  }

  #listaPerfiles .perfilItem {
    margin-bottom: 6px; 
  }

  .perfilAvatar {
    width: 28px;   /* avatar más pequeño */
    height: 28px;
    margin-right: 6px;
  }

  .modalOpciones > div {
    padding: 6px 0;
    font-size: 12px;
  }

  .cerrarSesion {
    font-size: 12px;
  }
}





/* Modal de géneros en móviles - lado izquierdo */
@media (max-width: 430px) {
  #modalCategorias {
    width: 180px;       /* más pequeño */
    top: 50px;          /* un poco más cerca del header */
    left: 10px;         /* alineado a la izquierda */
    right: auto;        /* desactiva alineación a la derecha */
    padding: 8px 10px;  /* menos padding */
    font-size: 12px;    /* texto más pequeño */
    max-height: 70vh;   /* permite scroll si hay muchos botones */
    overflow-y: auto;
  }

  .tituloCategorias {
    font-size: 14px;
    margin-bottom: 6px;
    text-align: left;
  }

  .generos-grid {
    gap: 4px;           /* menos espacio entre botones */
  }

  .generos-grid button {
    font-size: 12px;
    padding: 5px 8px;
  }

  #cerrarCategorias {
    font-size: 12px;
    padding: 4px 0;
  }
}







/* === Adaptación para móviles === */
@media (max-width: 600px) {

  /* Fondo negro completo */
  .fondo-busqueda {
    top: 50px; /* header más pequeño en móvil */
    height: calc(100% - 50px);
    padding: 0;
  }

  /* Grilla de resultados estilo Netflix móvil */
  .resultados-busqueda {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 10px;
    gap: 12px;               /* menos espacio entre tarjetas */
    justify-content: flex-start;
  }

  /* Tarjetas estilo Netflix móvil */
  .resultado-item {
    width: 180px;            /* más pequeño que en escritorio */
    height: 100px;           /* proporcional */
    border-radius: 8px;
  }

  .resultado-item img {
    border-radius: 8px;
  }

  /* Modal compacto */
  .modal-busqueda {
    max-width: 200px;        /* más estrecho */
    padding: 8px;
    font-size: 12px;
  }

  .modal-busqueda img {
    margin-bottom: 4px;
  }

  .modal-botones-busqueda {
    gap: 4px;
  }

  .modal-botones-busqueda button {
    padding: 4px 3px;
    font-size: 11px;
  }

  .modal-botones-busqueda button:nth-child(3) {
    margin-top: 4px;
  }

  /* Modal expandido compacto */
  .modal-expandido {
    max-width: 300px;
    padding: 8px;
    font-size: 12px;
    border-radius: 6px;
  }

  .modal-expandido h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  #listaTemporadas {
    max-height: 120px;
  }

  .temporada h5 {
    font-size: 12px;
  }

  .capitulo {
    font-size: 11px;
  }
}





























