/* styles.css */
body {
    background-image: url('735750.png'); /* Ruta de tu imagen */
    background-size: cover; /* Ajusta la imagen para cubrir todo el fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-position: center; /* Centra la imagen en la pantalla */
    background-attachment: fixed; /* Hace que el fondo permanezca fijo al hacer scroll */
    font-family: Arial, sans-serif
}


.header {
    background-color: 	#FF00FF;
    text-align: center;
    padding: 1rem;
}

.header h1 {
    margin: 0;
    color: #000000;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.main {
    padding: 1rem;
}

.episode-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.episode-card {
    
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    color: #000;
}

.episode-card:hover {
    transform: scale(1.05);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal.hidden {
    display: none;
}

.modal-content {
    position: relative;
    background: #000;
    padding: 1rem;
    border-radius: 8px;
}

.modal-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e50914;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
}
#copy{
    text-align: center;
}