/* À inclure dans profile.html si le fond est présent */
body.has-background {
    position: relative;
}

body.has-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Assombrit légèrement pour lisibilité */
    pointer-events: none;
    z-index: 0;
}

.profile-container {
    position: relative;
    z-index: 1;
}

.profile-header, .profile-link {
    background: rgba(255, 255, 255, 0.9); /* Fond semi-transparent pour lisibilité */
    backdrop-filter: blur(4px);
}