body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: #fff;
}

.cglobal {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* INFO PELÍCULA */
#info-pelicula {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

#info-pelicula img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* DESCRIPCIÓN */
.descripcion {
    flex: 1;
}

.descripcion p {
    color: #ccc;
    line-height: 1.6;
}

/* VIDEO */
#pelicula-subida {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#pelicula-subida video {
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
}

/* RESPONSIVE CELULAR */
@media (max-width: 768px) {

    #info-pelicula {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #info-pelicula img {
        width: 80%;
        max-width: 300px;
    }

    .descripcion {
        width: 100%;
    }
}

.btn-copiar {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background-color: #444;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.btn-copiar:hover {
    background-color: #666;
}

#mensaje-copiado {
    margin-left: 10px;
    color: #00ff88;
    font-size: 14px;
}

.btn-volver {
    display: inline-block;
    margin: 20px;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background-color: #222;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.btn-volver:hover {
    background-color: #e50914; 
    transform: scale(1.05);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 15px;
    overflow: hidden;
    display: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* SECCIÓN EPISODIOS */
.seccion-episodios {
    margin-top: 50px;
}

/* Contenedor h2 + buscador */
.header-episodios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Título */
.header-episodios h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Buscador moderno */
#buscador {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 15px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    width: 220px;
    transition: all 0.3s ease;
}

/* Placeholder */
#buscador::placeholder {
    color: #888;
}

@media (max-width: 600px) {

    .header-episodios {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: nowrap; /* Importante */
    }

    .header-episodios h2 {
        font-size: 18px;
    }

    #buscador {
        width: 160px;                 /* Más pequeño en móvil */
        font-size: 13px;
        padding: 8px 12px;
    }
}


/* Focus efecto rojo tipo Netflix */
#buscador:focus {
    border-color: #e50914;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.seccion-episodios h2 {
    margin-bottom: 20px;
}

/* GRID RESPONSIVE */
.grid-episodios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* TARJETA */
.tarjeta-episodio {
    text-decoration: none;
    color: white;
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* 2 tarjetas por fila en móvil */
@media (max-width: 768px) {
    .grid-episodios {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.tarjeta-episodio img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.info-ep {
    padding: 10px;
    text-align: center;
}

.tarjeta-episodio:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229,9,20,0.6);
}

.oculto{
    display:none;
}

/* SELECT TEMPORADA */

#selectorTemporada {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    margin-left: 8px;
}

/* Hover */
#selectorTemporada:hover {
    border-color: #e50914;
}

/* Focus */
#selectorTemporada:focus {
    border-color: #e50914;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
}

/* Opciones desplegables */
#selectorTemporada option {
    background-color: #1a1a1a;
    color: white;
}

.mensaje-busqueda {
    text-align: center;
    margin-top: 30px;
    color: #ff3b3b;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mensaje-busqueda.mostrar {
    opacity: 1;
}

.no-disponible {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: red;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}