/* =========================================
   LANZAMIENTOS MARQUEE — lsm-marquee.css
   v1.2 — sin icono play, sin label, más ancho, loop sin vacío
   ========================================= */

.lsm-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.lsm-track {
    display: inline-flex;
    gap: 16px;
    animation: lsm-slide var(--lsm-speed, 26s) linear infinite;
    will-change: transform;
}

.lsm-container:hover .lsm-track {
    animation-play-state: paused;
}

@keyframes lsm-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lsm-item {
    flex: 0 0 auto;
    width: 260px;
}

.lsm-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(89, 195, 249, 0.1);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
    white-space: normal;
}

.lsm-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(89, 195, 249, 0.35);
    background: rgba(89, 195, 249, 0.06);
}

.lsm-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.lsm-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lsm-card:hover .lsm-cover {
    transform: scale(1.04);
}

/* Play icon — eliminado */
.lsm-play-icon {
    display: none;
}

.lsm-info {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lsm-title {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lsm-artists {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

/* Label — eliminado */
.lsm-label {
    display: none;
}

.lsm-marquee-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    padding: 20px 0;
}

@media (prefers-reduced-motion: reduce) {
    .lsm-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    .lsm-item:nth-child(n+5) {
        display: none;
    }
}
