/* Background image styles */
.background-image-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.background-image-container img.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}
