
    @font-face {
        font-family: "Oxanium-SemiBold";
        src: url("/static/fonts/Oxanium-SemiBold.ttf") format("truetype");
        font-weight: 800;
        font-style: normal;
        font-display: block;
        }
     #spotlightHomeOverlay {
        --bg: #000;
        --panel: rgba(0, 0, 0, 0.42);
        --text: #fff;
        --muted: rgba(255, 255, 255, 0.72);
        --line: rgba(255, 255, 255, 0.08);
    }

    #spotlightHomeOverlay,
    #spotlightHomeOverlay * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .spotlight-home-overlay {
        background: #000;
        color: #fff;
        font-family: Arial, sans-serif;
    }



    #spotlightHomeOverlay .spotlight-feed {
        width: 100%;
        height: 100dvh;
        overflow-y: hidden;
        overflow-x: hidden;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        overscroll-behavior-y: none;
        background: #000;
    }

    #spotlightHomeOverlay .spotlight-feed.allow-vertical-scroll {
        overflow-y: auto;
        overflow-x: hidden;
    
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    
        scrollbar-width: none;
    }
    
    #spotlightHomeOverlay .spotlight-feed.allow-vertical-scroll::-webkit-scrollbar {
        display: none;
    }
        
    #spotlightHomeOverlay .spotlight-item {
        position: relative;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        padding: 0;
    }

    #spotlightHomeOverlay .video-shell {
        position: relative;
        width: 100vw;
        height: 100dvh;
        background: #000;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* default: non taglia */
    #spotlightHomeOverlay mux-player {
        width: 100%;
        height: 100%;
        display: block;

        --controls: none;
        --media-object-fit: contain;
        --media-object-position: center center;
        --loading-indicator: none;
        --controls-backdrop-color: transparent;
        --dialog: none;
        --play-button: none;
        --seek-backward-button: none;
        --seek-forward-button: none;
        --mute-button: none;
        --captions-button: none;
        --airplay-button: none;
        --pip-button: none;
        --fullscreen-button: none;
        --cast-button: none;
        background: #000;
    }

    /* verticale: più immersivo */
    #spotlightHomeOverlay .video-shell.is-portrait mux-player {
        --media-object-fit: cover;
    }

    /* orizzontale: mai tagliare */
    #spotlightHomeOverlay .video-shell.is-landscape mux-player,
    #spotlightHomeOverlay .video-shell.is-square mux-player {
        --media-object-fit: contain;
    }

    #spotlightHomeOverlay .video-overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 24%, rgba(0,0,0,0.02) 52%, rgba(0,0,0,0.14) 100%);
        z-index: 2;
    }

    #spotlightHomeOverlay .top-actions {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 4;
        display: flex;
        gap: 8px;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .mute-btn {
        border: 1px solid var(--line);
        background: var(--panel);
        color: #fff;
        border-radius: 999px;
        padding: 8px 11px;
        font-size: 12px;
        cursor: pointer;
        backdrop-filter: blur(8px);
    }

    #spotlightHomeOverlay .video-info {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        z-index: 4;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .artist-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    #spotlightHomeOverlay .artist-avatar {
        width: 38px;
        height: 38px;
        border-radius: 999px;
        object-fit: cover;
        background: #111;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .artist-meta {
        min-width: 0;
    }

    #spotlightHomeOverlay .artist-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    #spotlightHomeOverlay .artist-location {
        margin-top: 2px;
        font-size: 12px;
        color: var(--muted);
        line-height: 1.2;
    }

    #spotlightHomeOverlay .video-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    #spotlightHomeOverlay .video-caption {
        font-size: 13px;
        line-height: 1.4;
        color: rgba(255,255,255,0.92);
        max-width: 90%;
        white-space: pre-wrap;
        word-break: break-word;
    }

    #spotlightHomeOverlay .spotlight-empty,
    #spotlightHomeOverlay .spotlight-error,
    #spotlightHomeOverlay .spotlight-loading {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        text-align: center;
        color: var(--muted);
        background: #000;
    }

    #spotlightHomeOverlay .spotlight-message-box {
        max-width: 420px;
        padding: 18px 20px;
        border-radius: 18px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
    }

    @media (min-width: 768px) {
        #spotlightHomeOverlay .spotlight-item {
            padding: 18px;
        }

        /* default desktop */
        #spotlightHomeOverlay .video-shell {
            width: min(96vw, 1200px);
            height: min(92vh, 900px);
            border-radius: 22px;
        }

        /* video verticale su desktop */
        #spotlightHomeOverlay .video-shell.is-portrait {
            width: min(92vw, 460px);
            height: min(92vh, 860px);
        }

        /* video orizzontale su desktop */
        #spotlightHomeOverlay .video-shell.is-landscape {
            width: min(96vw, 1200px);
            height: min(82vh, 720px);
        }

        /* video quadrato */
        #spotlightHomeOverlay .video-shell.is-square {
            width: min(92vw, 760px);
            height: min(92vw, 760px);
            max-height: 82vh;
        }

        #spotlightHomeOverlay .video-info {
            left: 16px;
            right: 16px;
            bottom: 18px;
        }

        #spotlightHomeOverlay .top-actions {
            top: 16px;
            right: 16px;
        }
    }


    #spotlightHomeOverlay .spotlight-exit {
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 999;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(0,0,0,0.5);
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(8px);
    }




    

    #spotlightHomeOverlay .artist-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 10px;
        width: fit-content;
        max-width: 100%;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .artist-link:hover .artist-name {
        text-decoration: underline;
    }

    #spotlightHomeOverlay .artist-link:active {
        opacity: 0.9;
    }



#spotlightHomeOverlay .spotlight-top-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 10px 14px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

#spotlightHomeOverlay .spotlight-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #fff;

    background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.14);

    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

#spotlightHomeOverlay .spotlight-nav-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
    box-shadow: 0 10px 24px rgba(0,0,0,0.30);
}

#spotlightHomeOverlay .spotlight-nav-btn:active {
    transform: scale(0.97);
}

#spotlightHomeOverlay .spotlight-nav-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.96;
}

@media (max-width: 768px) {
    #spotlightHomeOverlay .spotlight-top-nav {
        top: 12px;
        gap: 10px;
        padding: 8px 10px;
    }

    #spotlightHomeOverlay .spotlight-nav-btn {
        width: 46px;
        height: 46px;
    }

    #spotlightHomeOverlay .spotlight-nav-icon {
        font-size: 21px;
    }
}


    #spotlightHomeOverlay .spotlight-side-actions {
        position: absolute;
        right: 14px;
        bottom: 110px;
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        pointer-events: auto;
    }


    #spotlightHomeOverlay .spotlight-ref-btn {
        border: 1px solid rgba(255,255,255,0.22);
        background: rgba(255,255,255,0.10);
        color: #fff;
        border-radius: 999px;
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.4px;
        line-height: 1;
        cursor: pointer;
        transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    #spotlightHomeOverlay .spotlight-ref-btn:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.18);
        color: #fff;
    }

    @media (min-width: 768px) {
        #spotlightHomeOverlay .spotlight-side-actions {
            right: 16px;
            bottom: 120px;
        }
    }




    #spotlightHomeOverlay .spotlight-horizontal-track::-webkit-scrollbar {
        display: none;
    }

    #spotlightHomeOverlay .spotlight-horizontal-slide {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }

    #spotlightHomeOverlay .horizontal-indicators {
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 6px;
        pointer-events: none;
    }

    #spotlightHomeOverlay .horizontal-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(255,255,255,0.35);
        transition: transform 0.18s ease, background 0.18s ease;
    }

    #spotlightHomeOverlay .horizontal-dot.active {
        background: #fff;
        transform: scale(1.15);
    }

    #spotlightHomeOverlay .spotlight-horizontal-hint {
        position: absolute;
        left: 50%;
        bottom: 90px;
        transform: translateX(-50%);
        z-index: 5;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(0,0,0,0.42);
        border: 1px solid rgba(255,255,255,0.10);
        color: rgba(255,255,255,0.88);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2px;
        pointer-events: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    #spotlightHomeOverlay .spotlight-item.has-horizontal .video-info {
        bottom: calc(26px + env(safe-area-inset-bottom, 0px));
    }

    @media (min-width: 768px) {
        #spotlightHomeOverlay .horizontal-indicators {
            top: 18px;
        }

        #spotlightHomeOverlay .spotlight-horizontal-hint {
            bottom: 98px;
            display: none;
        }
    }








#spotlightHomeOverlay .spotlight-feed {
    touch-action: auto;
    overscroll-behavior-y: contain;
}

#spotlightHomeOverlay .spotlight-horizontal-track {
    touch-action: auto;
    overscroll-behavior-x: contain;
}

#spotlightHomeOverlay .spotlight-horizontal-slide,
#spotlightHomeOverlay .video-shell,
#spotlightHomeOverlay .video-overlay {
    touch-action: pan-x pan-y;
}

#spotlightHomeOverlay mux-player {
    pointer-events: none;
}

#spotlightHomeOverlay .top-actions,
#spotlightHomeOverlay .video-info,
#spotlightHomeOverlay .spotlight-side-actions,
#spotlightHomeOverlay .playback-controls,
#spotlightHomeOverlay .horizontal-nav {
    pointer-events: auto;
}





    #spotlightHomeOverlay .spotlight-horizontal-track {
        width: 100%;
        height: 100%;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        touch-action: auto;
    }

    #spotlightHomeOverlay .spotlight-horizontal-track::-webkit-scrollbar {
        display: none;
    }

    #spotlightHomeOverlay .spotlight-horizontal-slide {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }

    #spotlightHomeOverlay .horizontal-indicators {
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 6px;
        pointer-events: none;
    }

    #spotlightHomeOverlay .horizontal-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(255,255,255,0.35);
        transition: transform 0.18s ease, background 0.18s ease;
    }

    #spotlightHomeOverlay .horizontal-dot.active {
        background: #fff;
        transform: scale(1.15);
    }

    #spotlightHomeOverlay .spotlight-horizontal-hint {
        position: absolute;
        left: 50%;
        bottom: 90px;
        transform: translateX(-50%);
        z-index: 5;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(0,0,0,0.42);
        border: 1px solid rgba(255,255,255,0.10);
        color: rgba(255,255,255,0.88);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2px;
        pointer-events: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }



    @media (min-width: 768px) {
        #spotlightHomeOverlay .horizontal-indicators {
            top: 18px;
        }

        #spotlightHomeOverlay .spotlight-horizontal-hint {
            bottom: 98px;
        }
    }


    #spotlightHomeOverlay .horizontal-nav {
        display: none;
    }

    @media (min-width: 768px) {
        #spotlightHomeOverlay .horizontal-nav {
            position: absolute;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            z-index: 6;
            display: flex;
            align-items: center;
            gap: 10px;
            pointer-events: auto;
        }

        #spotlightHomeOverlay .horizontal-nav-btn {
            width: 46px;
            height: 46px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(0,0,0,0.44);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
        }

        #spotlightHomeOverlay .horizontal-nav-btn:hover {
            transform: translateY(-1px);
            background: rgba(255,255,255,0.12);
        }

        #spotlightHomeOverlay .horizontal-nav-btn:disabled {
            opacity: 0.35;
            cursor: default;
            transform: none;
        }
    }


    #spotlightHomeOverlay .playback-controls {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        z-index: 6;
        pointer-events: auto;
        display: block;
    }

    #spotlightHomeOverlay .playback-progress-wrap {
        width: 100%;
        display: block;
    }

    #spotlightHomeOverlay .playback-time {
        min-width: 42px;
        font-size: 11px;
        font-weight: 700;
        color: rgba(255,255,255,0.84);
        text-align: center;
    }

    #spotlightHomeOverlay .playback-progress {
        position: relative;
        width: 100%;
        height: 18px;
        display: flex;
        align-items: center;
        cursor: pointer;
        touch-action: none;
    }

    #spotlightHomeOverlay .playback-progress-track {
        position: relative;
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background: rgba(255,255,255,0.30);
        overflow: hidden;
    }

    #spotlightHomeOverlay .playback-progress-fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0%;
        border-radius: 999px;
        background: #fff;
    }

    #spotlightHomeOverlay .playback-progress-thumb {
        position: absolute;
        top: 50%;
        left: 0%;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #fff;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 2px rgba(0,0,0,0.18);
    }

    #spotlightHomeOverlay .playback-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    #spotlightHomeOverlay .playback-btn {
        min-width: 44px;
        height: 44px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(0,0,0,0.44);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
    }

    #spotlightHomeOverlay .playback-btn:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.12);
    }

    #spotlightHomeOverlay .playback-btn.playpause-btn {
        min-width: 52px;
        font-size: 16px;
    }


    #spotlightHomeOverlay .playback-time {
        display: none;
    }



    #spotlightHomeOverlay .tap-play-indicator {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 6;
        width: 72px;
        height: 72px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.44);
        color: #fff;
        font-size: 28px;
        font-weight: 800;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    #spotlightHomeOverlay .tap-play-indicator.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }

    #spotlightHomeOverlay .playback-controls {
        opacity: 0.96;
    }

    #spotlightHomeOverlay .playback-progress-track {
        background: rgba(255,255,255,0.22);
    }

    #spotlightHomeOverlay .playback-progress-fill {
        background: #fff;
    }

    @media (min-width: 768px) {
        #spotlightHomeOverlay .playback-controls {
            left: 16px;
            right: 16px;
            bottom: 12px;
        }
    }


    #spotlightHomeOverlay .spotlight-comment-btn {
        border: 1px solid rgba(255,255,255,0.22);
        background: rgba(255,255,255,0.10);
        color: #fff;
        border-radius: 999px;
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 16px;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
        transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    #spotlightHomeOverlay .spotlight-comment-btn:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.18);
        color: #fff;
    }

    #spotlightHomeOverlay .spotlight-comment-btn.is-active {
        background: rgba(255,255,255,0.16);
        border-color: rgba(255,255,255,0.26);
    }

    #spotlightHomeOverlay .spotlight-comment-btn.comments-mode-floating {
        background: rgba(255, 159, 28, 0.18);
        border-color: rgba(255, 159, 28, 0.46);
        box-shadow:
            0 0 0 1px rgba(255, 159, 28, 0.18),
            0 0 18px rgba(255, 159, 28, 0.30),
            0 0 34px rgba(255, 159, 28, 0.16);
    }

    #spotlightHomeOverlay .spotlight-comment-btn.comments-mode-drawer {
        background: rgba(46, 204, 113, 0.16);
        border-color: rgba(46, 204, 113, 0.44);
        box-shadow:
            0 0 0 1px rgba(46, 204, 113, 0.18),
            0 0 18px rgba(46, 204, 113, 0.28),
            0 0 34px rgba(46, 204, 113, 0.14);
    }
    #spotlightHomeOverlay .spotlight-report-btn {
        border: 1px solid rgba(255,255,255,0.22);
        background: rgba(255,255,255,0.10);
        color: #fff;
    
        border-radius: 999px;
        width: 42px;
        height: 42px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        font-size: 16px;
        font-weight: 800;
    
        cursor: pointer;
    
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    
        transition: transform 0.15s ease, background 0.15s ease;
    }
    
    #spotlightHomeOverlay .spotlight-report-btn:hover {
        transform: translateY(-1px);
        background: rgba(255, 80, 80, 0.18);
    }
    #spotlightHomeOverlay .spotlight-comment-count {
        font-size: 12px;
        color: rgba(255,255,255,0.82);
        min-width: 16px;
        text-align: center;
        font-weight: 700;
        margin-top: -2px;
    }

    #spotlightHomeOverlay .floating-comments-layer {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: min(82vw, 420px);
        bottom: 54px;
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .floating-comment-bubble {
        max-width: min(82vw, 420px);
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        border-radius: 18px;
        background: rgba(0,0,0,0.48);
        border: 1px solid rgba(255,255,255,0.10);
        color: #fff;
        font-size: 12px;
        line-height: 1.4;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.24);
        animation: floatingCommentIn 0.22s ease;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .floating-comment-author {
        display: block;
        font-size: 11px;
        font-weight: 800;
        color: rgba(255,255,255,0.92);
        margin-bottom: 4px;
    }

    #spotlightHomeOverlay .floating-comment-text {
        color: rgba(255,255,255,0.86);
        word-break: break-word;
        white-space: pre-wrap;
    }

    @keyframes floatingCommentIn {
        from {
            opacity: 0;
            transform: translateY(8px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    #spotlightHomeOverlay .comments-drawer {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 8;
        height: min(54%, 440px);
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.22s ease, opacity 0.22s ease;
        background: rgba(10,10,10,0.96);
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
        border-top: 1px solid rgba(255,255,255,0.10);
        box-shadow: 0 -16px 34px rgba(0,0,0,0.28);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    #spotlightHomeOverlay .comments-drawer.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .comments-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 14px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    #spotlightHomeOverlay .comments-drawer-title {
        font-size: 14px;
        font-weight: 800;
        color: #fff;
    }

    #spotlightHomeOverlay .comments-drawer-close {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.08);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .comments-drawer-list {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 10px 12px 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }

    #spotlightHomeOverlay .comments-drawer-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 10px;
        border-radius: 16px;
        position: relative;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.06);
    }

    #spotlightHomeOverlay .comments-drawer-avatar {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        object-fit: cover;
        background: #111;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .comments-drawer-meta {
        min-width: 0;
        flex: 1 1 auto;
    }

    #spotlightHomeOverlay .comments-drawer-author {
        font-size: 12px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    #spotlightHomeOverlay .comments-drawer-text {
        font-size: 13px;
        line-height: 1.42;
        color: rgba(255,255,255,0.88);
        white-space: pre-wrap;
        word-break: break-word;
    }

    #spotlightHomeOverlay .comments-drawer-empty {
        padding: 18px;
        border-radius: 16px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.68);
        font-size: 13px;
        line-height: 1.45;
        text-align: center;
    }

    #spotlightHomeOverlay .comments-drawer-composer {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.03);
    }

    #spotlightHomeOverlay .comments-drawer-input {
        flex: 1 1 auto;
        height: 42px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(255,255,255,0.06);
        color: #fff;
        outline: none;
        font-size: 13px;
        transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }

    #spotlightHomeOverlay .comments-drawer-input::placeholder {
        color: rgba(255,255,255,0.42);
    }

    #spotlightHomeOverlay .comments-drawer-input:focus {
        border-color: rgba(215, 25, 32, 0.72);
        background: rgba(255,255,255,0.09);
        box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
    }

    #spotlightHomeOverlay .comments-drawer-send {
        flex: 0 0 auto;
        min-width: 74px;
        height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid #d71920;
        background: #d71920;
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        cursor: pointer;
        transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
    }

    #spotlightHomeOverlay .comments-drawer-send:hover {
        transform: translateY(-1px);
    }

    #spotlightHomeOverlay .comments-drawer-send:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }



    @media (min-width: 768px) {
        #spotlightHomeOverlay .floating-comments-layer {
            left: 50%;
            transform: translateX(-50%);
            width: min(60vw, 460px);
            bottom: 58px;
        }

        #spotlightHomeOverlay .comments-drawer {
            height: min(50%, 460px);
        }
    }



    #spotlightHomeOverlay .comment-author-trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        font: inherit;
        text-align: left;
        pointer-events: auto;
    }

    #spotlightHomeOverlay .comment-author-trigger-avatar {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        object-fit: cover;
        background: #111;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .comments-drawer-author-trigger,
    #spotlightHomeOverlay .comments-drawer-author-name {
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        color: inherit;
        font: inherit;
        text-align: left;
    }

    #spotlightHomeOverlay .comments-drawer-author-name:hover,
    #spotlightHomeOverlay .comment-author-trigger:hover .floating-comment-author {
        text-decoration: underline;
    }

    #spotlightHomeOverlay .comment-user-popover {
        position: fixed;
        inset: 0;
        z-index: 12000;
        display: none;
    }

    #spotlightHomeOverlay .comment-user-popover.open {
        display: block;
    }

    #spotlightHomeOverlay .comment-user-popover-backdrop {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0,0,0,0.52);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    #spotlightHomeOverlay .comment-user-popover-card {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 2;
        transform: translate(-50%, -50%);
        width: min(92vw, 360px);
        border-radius: 22px;
        background: rgba(14,14,14,0.96);
        border: 1px solid rgba(255,255,255,0.10);
        box-shadow: 0 24px 60px rgba(0,0,0,0.45);
        overflow: hidden;
    }

    #spotlightHomeOverlay .comment-user-popover-header {
        display: flex;
        align-items: center;
        z-index: 1;
        gap: 12px;
        padding: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    #spotlightHomeOverlay .comment-user-popover-avatar {
        width: 48px;
        height: 48px;
        border-radius: 999px;
        object-fit: cover;
        background: #111;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .comment-user-popover-meta {
        min-width: 0;
        flex: 1 1 auto;
    }

    #spotlightHomeOverlay .comment-user-popover-username {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    #spotlightHomeOverlay .comment-user-popover-close {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.08);
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        flex: 0 0 auto;
    }

    #spotlightHomeOverlay .comment-user-popover-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px 16px;
    }

    #spotlightHomeOverlay .comment-user-popover-btn {
        height: 44px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 800;
        cursor: pointer;
        transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
    }

    #spotlightHomeOverlay .comment-user-popover-btn.secondary {
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

    #spotlightHomeOverlay .comment-user-popover-btn.primary {
        border: 1px solid #d71920;
        background: #d71920;
        color: #fff;
    }

    #spotlightHomeOverlay .comment-user-popover-btn.primary.is-contact {
        border-color: rgba(46, 204, 113, 0.75);
        background: rgba(46, 204, 113, 0.22);
        color: #fff;
    }
    #spotlightHomeOverlay .comments-drawer,
    #spotlightHomeOverlay .comments-drawer-list,
    #spotlightHomeOverlay .comments-drawer-item,
    #spotlightHomeOverlay .comments-drawer-meta,
    #spotlightHomeOverlay .comments-drawer-author-trigger,
    #spotlightHomeOverlay .comments-drawer-author-name,
    #spotlightHomeOverlay .comment-author-trigger {
        pointer-events: auto;
    }

    #spotlightHomeOverlay .comment-author-trigger,
    #spotlightHomeOverlay .comments-drawer-author-trigger,
    #spotlightHomeOverlay .comments-drawer-author-name {
        position: relative;
        z-index: 20;
    }


    #spotlightHomeOverlay .comment-user-popover,
    #spotlightHomeOverlay .comment-user-popover-backdrop,
    #spotlightHomeOverlay .comment-user-popover-card,
    #spotlightHomeOverlay .comment-user-popover-close,
    #spotlightHomeOverlay .comment-user-popover-btn,
    #spotlightHomeOverlay #commentUserPopoverContactBtn,
    #spotlightHomeOverlay #commentUserPopoverProfileLink {
        pointer-events: auto;
    }

    #spotlightHomeOverlay .comment-delete-btn {
        position: absolute;
        top: 8px;
        right: 8px;

        width: 26px;
        height: 26px;
        border-radius: 999px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 12px;
        font-weight: 800;
        line-height: 1;

        color: rgba(255,255,255,0.72);

        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(0,0,0,0.42);

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        cursor: pointer;

        transition:
            transform 0.15s ease,
            background 0.15s ease,
            color 0.15s ease,
            border-color 0.15s ease,
            box-shadow 0.15s ease;
    }

    #spotlightHomeOverlay .comment-delete-btn:hover {
        transform: scale(1.08);
        color: #ff5c5c;

        border-color: rgba(255, 92, 92, 0.5);
        background: rgba(255, 92, 92, 0.12);

        box-shadow:
            0 0 0 1px rgba(255, 92, 92, 0.18),
            0 0 12px rgba(255, 92, 92, 0.22);
    }

    #spotlightHomeOverlay .comment-delete-btn:active {
        transform: scale(0.94);
    }





#spotlightHomeOverlay .artist-popup-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
    background: rgba(12, 12, 14, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#spotlightHomeOverlay .artist-popup-overlay.open {
    display: flex;
}

#spotlightHomeOverlay .artist-popup {
    position: relative;
    width: min(720px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    padding: 22px;
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color: var(--text);
}

#spotlightHomeOverlay .artist-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

#spotlightHomeOverlay .artist-popup-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

#spotlightHomeOverlay .artist-popup-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 44px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

#spotlightHomeOverlay .artist-popup-avatar {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 2px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
}

#spotlightHomeOverlay .artist-popup-userblock {
    min-width: 0;
}

#spotlightHomeOverlay .artist-popup-username {
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    word-break: break-word;
    color: var(--text);
}

#spotlightHomeOverlay .artist-popup-tags {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

#spotlightHomeOverlay .artist-popup-residence {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

#spotlightHomeOverlay .artist-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

#spotlightHomeOverlay .artist-popup-action-btn {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;

    cursor: pointer;
    box-sizing: border-box;
}

#spotlightHomeOverlay .artist-popup-action-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}
#spotlightHomeOverlay .artist-popup-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;

    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;
    box-shadow: none;

    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}
#spotlightHomeOverlay .artist-popup-trigger:hover,
#spotlightHomeOverlay .artist-popup-trigger:focus,
#spotlightHomeOverlay .artist-popup-trigger:active {
    background: transparent;
    box-shadow: none;
    outline: none;
}
#spotlightHomeOverlay .artist-popup-favorite.icon-only {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);

    transition:
        background 160ms ease,
        border-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

#spotlightHomeOverlay .artist-popup-favorite.icon-only:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

#spotlightHomeOverlay .artist-popup-favorite.icon-only:active {
    transform: scale(0.96);
}

#spotlightHomeOverlay .artist-popup-favorite-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
    opacity: 0.9;
    transition:
        transform 160ms ease,
        filter 160ms ease,
        opacity 160ms ease;
}

#spotlightHomeOverlay .artist-popup-favorite.icon-only.active {
    background: rgba(215, 25, 32, 0.08);
    border-color: rgba(215, 25, 32, 0.34);
    box-shadow:
        0 10px 22px rgba(215, 25, 32, 0.16),
        0 0 0 1px rgba(215, 25, 32, 0.10);
}

#spotlightHomeOverlay .artist-popup-favorite.icon-only.active .artist-popup-favorite-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 0 6px rgba(215, 25, 32, 0.45));
    opacity: 1;
}


#spotlightHomeOverlay .artist-popup-follow.following {
    background: #fff;
    color: #000;
    border-color: #fff;
}

#spotlightHomeOverlay .artist-popup-follow.not-following {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}
#spotlightHomeOverlay .artist-popup-follow {
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

#spotlightHomeOverlay .artist-popup-follow.following {
    background: #fff;
    color: #000;
    border-color: #fff;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.2),
        0 0 12px rgba(255,255,255,0.2);
}

#spotlightHomeOverlay .artist-popup-follow.not-following:hover {
    background: rgba(255,255,255,0.12);
}

#spotlightHomeOverlay .artist-popup-follow.following:hover {
    background: #eaeaea;
}
#spotlightHomeOverlay .artist-popup-followers-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

#spotlightHomeOverlay .artist-popup-section {
    margin-top: 18px;
}

#spotlightHomeOverlay .artist-popup-section h3 {
    margin: 0 0 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
}

#spotlightHomeOverlay .artist-popup-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#spotlightHomeOverlay .artist-popup-links a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#spotlightHomeOverlay .artist-popup-links a:hover {
    background: rgba(255, 255, 255, 0.14);
}

#spotlightHomeOverlay .artist-popup-media-list {
    display: grid;
    gap: 12px;
}

#spotlightHomeOverlay .artist-popup-media-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 2px;
}

#spotlightHomeOverlay .artist-popup-media-label {
    font-size: 13px;
    color: var(--text);
    word-break: break-word;
}

#spotlightHomeOverlay .artist-popup-media-play {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

#spotlightHomeOverlay .artist-popup-media-play:hover {
    background: rgba(255, 255, 255, 0.16);
}

#spotlightHomeOverlay .artist-popup-empty {
    font-size: 13px;
    color: var(--muted);
}

#spotlightHomeOverlay .artist-popup-spotlight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

#spotlightHomeOverlay .artist-popup-spotlight-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

#spotlightHomeOverlay .artist-popup-spotlight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

#spotlightHomeOverlay .artist-popup-spotlight-thumb-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

#spotlightHomeOverlay .artist-popup-spotlight-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#spotlightHomeOverlay .artist-popup-spotlight-play {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 6px 8px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.74);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

#spotlightHomeOverlay .artist-popup-spotlight-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

#spotlightHomeOverlay .artist-popup-spotlight-title {
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#spotlightHomeOverlay .artist-popup-spotlight-caption {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#spotlightHomeOverlay .artist-popup-spotlight-meta {
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.85;
}

#spotlightHomeOverlay .artist-popup-followers-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

#spotlightHomeOverlay .artist-popup-followers-card {
    width: min(520px, 92vw);
    max-height: 80vh;
    overflow: auto;
    background: #0d0d0d;
    border-radius: 18px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

/* titolo */
#spotlightHomeOverlay .artist-popup-followers-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* close */
#spotlightHomeOverlay .artist-popup-followers-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #aaa;
}

#spotlightHomeOverlay .artist-popup-followers-close:hover {
    color: #fff;
}

/* lista */
#spotlightHomeOverlay #artistPopupFollowersList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* item */
#spotlightHomeOverlay .artist-popup-follower-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

#spotlightHomeOverlay .artist-popup-follower-item:last-child {
    border-bottom: none;
}

/* link */
#spotlightHomeOverlay .artist-popup-follower-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

/* avatar */
#spotlightHomeOverlay .artist-popup-follower-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 40px;
}

#spotlightHomeOverlay .artist-popup-follower-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#spotlightHomeOverlay .artist-popup-follower-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

#spotlightHomeOverlay .artist-popup-follower-meta {
    font-size: 12px;
    color: #888;
    line-height: 1.2;
}

#spotlightHomeOverlay .artist-popup-follower-item .reach-out-btn,
#spotlightHomeOverlay .artist-popup-follower-item .contacts-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

body.popup-open {
    overflow: hidden;
}


/* BOTTONI */
/* container opzionale */
#spotlightHomeOverlay .artist-popup-follower-action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* base */
#spotlightHomeOverlay .pitch-btn,
#spotlightHomeOverlay .contacts-btn {
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px; /* pill */
    cursor: pointer;
    font-weight: 600;
    transition: all 0.18s ease;
    white-space: nowrap;
}

/* REACH OUT → nero */
#spotlightHomeOverlay .pitch-send-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

#spotlightHomeOverlay .reach-out-btn:hover {
    background: #fff;
    color: #000;
}

/* IN CONTACTS → verde */
#spotlightHomeOverlay .contacts-btn.in-contacts-btn {
    background: #1db954;
    color: #fff;
    border: none;
}

#spotlightHomeOverlay .contacts-btn.in-contacts-btn:hover {
    background: #17a44a;
}

@media (max-width: 768px) {
    #spotlightHomeOverlay .artist-popup-overlay {
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
    }

    #spotlightHomeOverlay .artist-popup {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        min-height: 100vh;
        padding: 18px 16px 28px;
        border-radius: 0;
    }

    #spotlightHomeOverlay .artist-popup-head {
        align-items: flex-start;
    }

    #spotlightHomeOverlay .artist-popup-avatar {
        width: 86px;
        height: 86px;
    }

    #spotlightHomeOverlay .artist-popup-username {
        font-size: 22px;
    }

    #spotlightHomeOverlay .artist-popup-spotlight-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    #spotlightHomeOverlay .artist-popup-spotlight-info {
        gap: 4px;
        padding: 8px;
    }

    #spotlightHomeOverlay .artist-popup-spotlight-title {
        font-size: 11px;
    }

    #spotlightHomeOverlay .artist-popup-spotlight-caption {
        font-size: 10px;
    }

    #spotlightHomeOverlay .artist-popup-spotlight-meta {
        font-size: 9px;
    }
}


#spotlightHomeOverlay .pitch-modal {
    position: fixed;
    inset: 0;
    z-index: 13001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
}

#spotlightHomeOverlay .pitch-modal.open {
    display: flex;
}

#spotlightHomeOverlay .pitch-modal-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(255,255,255,.05), transparent 34%),
        linear-gradient(180deg, rgba(20,20,20,.98), rgba(8,8,8,.98));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);
    color: #fff;
    font-family: "Sora", Arial, sans-serif;
}

#spotlightHomeOverlay .pitch-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
}

#spotlightHomeOverlay .pitch-modal-close:hover {
    background: rgba(255,255,255,.14);
    transform: scale(1.04);
}

#spotlightHomeOverlay .pitch-modal-header {
    padding: 24px 24px 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

#spotlightHomeOverlay .pitch-modal-title {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
}

#spotlightHomeOverlay .pitch-modal-subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.45;
}

#spotlightHomeOverlay .pitch-modal-body {
    padding: 16px 24px 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

#spotlightHomeOverlay .pitch-modal-search {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    color: #fff;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

#spotlightHomeOverlay .pitch-modal-search::placeholder {
    color: rgba(255,255,255,.42);
}

#spotlightHomeOverlay .pitch-modal-search:focus {
    border-color: rgba(34,197,94,.5);
    box-shadow: 0 0 0 4px rgba(34,197,94,.14);
    background: rgba(255,255,255,.07);
}

#spotlightHomeOverlay .pitch-modal-status {
    min-height: 20px;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.72);
    font-weight: 600;
}

#spotlightHomeOverlay .pitch-contacts-list {
    flex: 1;
    min-height: 220px;
    overflow: auto;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
}

#spotlightHomeOverlay .pitch-contacts-list::-webkit-scrollbar {
    width: 8px;
}

#spotlightHomeOverlay .pitch-contacts-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}

#spotlightHomeOverlay .pitch-contact-card {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    cursor: pointer;
    transition:
        transform .16s ease,
        background .16s ease,
        border-color .16s ease,
        box-shadow .16s ease;
    text-align: left;
    color: #fff;
    font: inherit;
    box-shadow: none;
    outline: none;
}

#spotlightHomeOverlay .pitch-contact-card:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    transform: translateY(-1px);
}

#spotlightHomeOverlay .pitch-contact-card:focus-visible {
    box-shadow: 0 0 0 4px rgba(34,197,94,.14);
    border-color: rgba(34,197,94,.4);
}

#spotlightHomeOverlay .pitch-contact-card.selected {
    background: linear-gradient(180deg, rgba(34,197,94,.13), rgba(34,197,94,.08));
    border-color: rgba(34,197,94,.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

#spotlightHomeOverlay .pitch-contact-check {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
}

#spotlightHomeOverlay .pitch-contact-card.selected .pitch-contact-check {
    border-color: rgba(34,197,94,.45);
    background: rgba(34,197,94,.18);
}

#spotlightHomeOverlay .pitch-contact-card.selected .pitch-contact-check::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #d1fae5;
    font-size: 16px;
    font-weight: 900;
}

#spotlightHomeOverlay .pitch-contact-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    background: #111;
    flex: 0 0 auto;
}

#spotlightHomeOverlay .pitch-contact-meta {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#spotlightHomeOverlay .pitch-contact-username {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

#spotlightHomeOverlay .pitch-contact-location {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255,255,255,.62);
}

#spotlightHomeOverlay .pitch-contact-tags {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
}

#spotlightHomeOverlay .pitch-empty-box {
    margin-top: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.60);
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

#spotlightHomeOverlay .pitch-modal-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,.07);
}

#spotlightHomeOverlay .pitch-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#spotlightHomeOverlay .pitch-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 999px;
    cursor: pointer;

    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: inherit;
    transition:
    transform .16s ease,
    filter .16s ease,
    opacity .16s ease,
    background .16s ease,
    box-shadow .16s ease;
    box-shadow: none;
    outline: none;
}

#spotlightHomeOverlay .pitch-btn:hover {
    transform: translateY(-1px);
}

#spotlightHomeOverlay .pitch-btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}

#spotlightHomeOverlay .pitch-btn-secondary {
    background: rgba(255,255,255,.08);
    color: #fff;
}

#spotlightHomeOverlay .pitch-btn-secondary:hover {
    background: rgba(255,255,255,.12);
}

#spotlightHomeOverlay .pitch-btn-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    box-shadow: 0 12px 28px rgba(34,197,94,.20);
}

#spotlightHomeOverlay .pitch-btn-primary:hover {
    filter: brightness(1.04);
}

#spotlightHomeOverlay .pitch-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

#spotlightHomeOverlay .spotlight-pitch-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 10px;
    border-radius: 999px;


    background: rgba(0,0,0,.44);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: "Sora", Arial, sans-serif;

    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform .16s ease,
        background .16s ease,
        filter .16s ease,
        box-shadow .16s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

#spotlightHomeOverlay .spotlight-pitch-btn:hover {
    background: rgba(255,255,255,.14);
    transform: scale(1.04);
}

@media (max-width: 640px) {
    #spotlightHomeOverlay .pitch-modal-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px;
    }

    #spotlightHomeOverlay .pitch-modal-header,
    #spotlightHomeOverlay .pitch-modal-body,
    #spotlightHomeOverlay .pitch-modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    #spotlightHomeOverlay .pitch-modal-actions {
        flex-direction: column;
    }

    #spotlightHomeOverlay .pitch-btn {
        width: 100%;
    }
}

#spotlightHomeOverlay .share-icon {
    display: block;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

#spotlightHomeOverlay .spotlight-share-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);

    border: none;
    padding: 0;

    cursor: pointer;
}

#spotlightHomeOverlay .spotlight-share-btn svg {
    width: 20px;
    height: 20px;

    display: block;
}

#spotlightHomeOverlay .spotlight-share-btn:hover {
    background: rgba(0,0,0,0.5);
}

#spotlightHomeOverlay .spotlight-share-btn:active {
    transform: scale(0.9);
}

#spotlightHomeOverlay .spotlight-side-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#spotlightHomeOverlay .spotlight-share-btn {
    color: #fff; /* 🔥 questo controlla l’icona */
    margin-bottom: 4px; /* più aria sotto */
}

#spotlightHomeOverlay .spotlight-pitch-icon-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#spotlightHomeOverlay .spotlight-pitch-icon {
    width: 23px;
    height: 23px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

/* =========================================================
   SPOTLIGHT OVERLAY — Send Pitch footer buttons cleanup
========================================================= */

#spotlightHomeOverlay .pitch-modal-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

#spotlightHomeOverlay .pitch-btn {
    appearance: none;
    -webkit-appearance: none;

    width: auto;
    min-width: 104px;
    height: 38px;
    min-height: 38px;

    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: rgba(255,255,255,0.07);
    color: #fff;

    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;

    cursor: pointer;
    pointer-events: auto;

    transition:
        transform 150ms ease,
        background 150ms ease,
        border-color 150ms ease,
        opacity 150ms ease,
        box-shadow 150ms ease;
}

#spotlightHomeOverlay .pitch-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.22);
}

#spotlightHomeOverlay .pitch-btn:active {
    transform: scale(0.97);
}

#spotlightHomeOverlay .pitch-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}

#spotlightHomeOverlay .pitch-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.12);
}

#spotlightHomeOverlay .pitch-btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
}

#spotlightHomeOverlay .pitch-btn-primary,
#spotlightHomeOverlay .pitch-send-btn {
    background: #d71920;
    color: #fff;
    border-color: #d71920;
    box-shadow: 0 10px 22px rgba(215,25,32,0.18);
}

#spotlightHomeOverlay .pitch-btn-primary:hover,
#spotlightHomeOverlay .pitch-send-btn:hover {
    background: #b51218;
    border-color: #b51218;
}

#spotlightHomeOverlay .pitch-btn:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Se dentro Send Pitch c'è un'icona, ridimensioniamo solo l'icona, non il bottone */
#spotlightHomeOverlay .pitch-send-btn img,
#spotlightHomeOverlay .pitch-send-btn svg,
#spotlightHomeOverlay .pitch-send-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
    pointer-events: none;
}

.spotlight-home-overlay {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000;
    color: #fff;
}

.spotlight-home-overlay[aria-hidden="false"] {
    display: flex;
}

.spotlight-home-overlay .spotlight-embed-root {
    position: relative;
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
    background: #000;
}

.spotlight-home-overlay[aria-hidden="true"] {
    display: none !important;
}

/* =================================
   SPOTLIGHT PITCH MODAL VISIBILITY
   funziona sia con .open sia con aria-hidden="false"
================================= */

#spotlightHomeOverlay #pitchModal {
    display: none !important;
}

#spotlightHomeOverlay #pitchModal.open,
#spotlightHomeOverlay #pitchModal[aria-hidden="false"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#spotlightHomeOverlay #pitchModal[aria-hidden="true"]:not(.open) {
    display: none !important;
}

#spotlightHomeOverlay .pitch-send-icon {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 640px) {
    #spotlightHomeOverlay .pitch-modal-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    #spotlightHomeOverlay .pitch-btn {
        width: 100%;
        min-width: 0;
        height: 40px;
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }
}


/* =========================================================
   SPOTLIGHT OVERLAY — Send Pitch always centered
========================================================= */

#spotlightHomeOverlay .pitch-modal {
    position: fixed;
    inset: 0;
    z-index: 13001;

    display: none;
    align-items: center;
    justify-content: center;

    width: 100vw;
    min-height: 100dvh;
    padding: 18px;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;
}

#spotlightHomeOverlay .pitch-modal.open {
    display: flex;
}

#spotlightHomeOverlay .pitch-modal-panel {
    position: relative;
    inset: auto;
    transform: none;

    width: min(720px, calc(100vw - 36px));
    max-height: min(88dvh, 760px);

    margin: auto;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 640px) {
    #spotlightHomeOverlay .pitch-modal {
        align-items: center;
        justify-content: center;
        padding: 14px;
    }

    #spotlightHomeOverlay .pitch-modal-panel {
        width: min(100%, calc(100vw - 28px));
        max-height: min(88dvh, 720px);
        margin: auto;
        border-radius: 24px;
    }
}


/* =========================================================
   SPOTLIGHT OVERLAY — final hardening for embedded Send Pitch
   protegge la modale Spotlight dai CSS globali delle pagine
========================================================= */

#spotlightHomeOverlay #pitchModal.pitch-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 13001 !important;

    width: 100vw !important;
    min-height: 100dvh !important;

    padding: 18px !important;
    margin: 0 !important;

    background: rgba(0, 0, 0, 0.78) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden !important;
}

#spotlightHomeOverlay #pitchModal.pitch-modal.open,
#spotlightHomeOverlay #pitchModal.pitch-modal[aria-hidden="false"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#spotlightHomeOverlay #pitchModal.pitch-modal[aria-hidden="true"]:not(.open) {
    display: none !important;
}

#spotlightHomeOverlay #pitchModal .pitch-modal-panel {
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    width: min(720px, calc(100vw - 36px)) !important;
    max-height: min(88dvh, 760px) !important;

    margin: auto !important;

    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

#spotlightHomeOverlay #pitchModal .pitch-modal-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

#spotlightHomeOverlay #pitchModal .pitch-contacts-list {
    flex: 1 1 auto !important;
    min-height: 180px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
}

#spotlightHomeOverlay #pitchModal .pitch-modal-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

#spotlightHomeOverlay #pitchModal .pitch-btn {
    pointer-events: auto !important;
    white-space: nowrap !important;
}

@media (max-width: 640px) {
    #spotlightHomeOverlay #pitchModal.pitch-modal {
        padding: 14px !important;
    }

    #spotlightHomeOverlay #pitchModal .pitch-modal-panel {
        width: min(100%, calc(100vw - 28px)) !important;
        max-height: min(88dvh, 720px) !important;
        border-radius: 24px !important;
    }

    #spotlightHomeOverlay #pitchModal .pitch-modal-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    #spotlightHomeOverlay #pitchModal .pitch-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
    }
}


/* ==============================
   Rimuovi sfondi biancastri Spotlight
   ============================== */

/* Nome artista in overlay */
#spotlightHomeOverlay .artist-popup-username {
    background: transparent !important;
}

/* Avatar già scuro, lasciamo invariato */
#spotlightHomeOverlay .artist-popup-avatar {
    background: transparent !important;
}

/* Link artisti */
#spotlightHomeOverlay .artist-popup-links a {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08); /* mantiene solo bordo leggero */
}

/* Pulsanti media / play */
#spotlightHomeOverlay .artist-popup-media-play {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.07);
}

/* Card spotlight */
#spotlightHomeOverlay .artist-popup-spotlight-card {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Titoli e descrizioni nelle card */
#spotlightHomeOverlay .artist-popup-spotlight-title,
#spotlightHomeOverlay .artist-popup-spotlight-caption,
#spotlightHomeOverlay .artist-popup-spotlight-meta {
    background: transparent !important;
}
