/* Autors: Raivis Rampāns */
/* Izveidots: 27.05.2026 */
/* Mainīts : 27.05.2026 */

.glass-panel {
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.1);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.profile-picture-card {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 20px;

    background: rgba(0, 0, 0, 0.3);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.song-preview-card {
    border: 1px solid rgba(192, 132, 252, 0.25);
    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(88, 28, 135, 0.3),
            rgba(0, 0, 0, 0.55)
        );

    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.song-preview-card:hover {
    border-color: rgba(216, 180, 254, 0.7);
    box-shadow: 0 20px 40px rgba(88, 28, 135, 0.4);
}

.song-preview-video {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 14px;

    background: black;

    box-shadow: inset 0 2px 18px rgba(0, 0, 0, 0.6);
}

.song-preview-placeholder {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;

    background: black;
}

.song-preview-play-icon {
    object-fit: contain;
    opacity: 0.9;

    transition: transform 0.25s ease;
}

.song-preview-card:hover .song-preview-play-icon {
    transform: scale(1.1);
}

.user-dropdown-card {
    position: absolute;
    right: 0;
    bottom: 100%;

    margin-bottom: 12px;
    min-width: 220px;
    overflow: hidden;

    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 18px;

    background: rgba(2, 6, 23, 0.95);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
}

.user-dropdown-link-danger {
    display: block;

    padding: 16px 20px;

    color: rgb(254, 202, 202);

    font-size: 18px;
    font-weight: 800;

    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.user-dropdown-link-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    color: white;
}