.holo-wrapper {
    position: relative;
    overflow: hidden;
    line-height: 0; /* Prevents gaps below the image */
}

/* Specific wrappers for Zylphi */
#profile-banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 0;
    border-radius: 12px 12px 0 0; /* Match profile card top borders */
    overflow: hidden;
    -webkit-mask-image: linear-gradient( to bottom, black 65%, rgba(0,0,0,0.9) 75%, rgba(0,0,0,0.5) 90%, transparent 100% );
    mask-image: linear-gradient( to bottom, black 65%, rgba(0,0,0,0.9) 75%, rgba(0,0,0,0.5) 90%, transparent 100% );
}

#profile-banner-wrapper #profile-banner {
    position: relative !important;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#album-art-wrapper {
    border-radius: 8px; /* Match album art border radius */
    flex-shrink: 0;
}

.holo-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark-red tinted holographic gradient */
    background: linear-gradient(
        115deg, 
        rgba(255, 100, 100, 0) 0%, 
        rgba(255, 100, 100, 0.05) 30%, 
        rgba(255, 100, 100, 0.2) 45%, 
        rgba(255, 200, 200, 0.4) 50%, 
        rgba(255, 100, 100, 0.2) 55%, 
        rgba(255, 100, 100, 0.05) 70%, 
        rgba(255, 100, 100, 0) 100%
    );
    background-size: 200% 100%;
    background-position: -200% 0;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 10;
    animation: holo-shine 6s ease-in-out infinite;
}

@keyframes holo-shine {
    0% {
        background-position: -200% 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        background-position: 200% 0;
        opacity: 0;
    }
    100% {
        background-position: 200% 0;
        opacity: 0;
    }
}
