.poster-thumb {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.poster-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.4s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.lightbox-caption {
    margin: 10px auto;
    width: 80%;
    text-align: center;
    color: #f1f1f1;
    font-size: 18px;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}
.close:hover {
    color: #bbb;
}
/* Tarjeta de poster */
.poster-card {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.poster-card h2 {
    font-size: 20px;
    margin: 6px 0 10px;
}

/* Miniatura clickeable */
.poster-thumb {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}
.poster-thumb:hover { transform: scale(1.02); box-shadow: 0 6px 18px rgba(0,0,0,.15); }

/* Lista de metadatos con iconos */
.poster-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    color: #444;
    font-size: 14px;
}
.poster-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0,0,0,.06);
}
.poster-meta li:last-child { border-bottom: 0; }
.poster-meta i { width: 18px; text-align: center; opacity: .85; }