/* Cherry background */
body {
    background-image: url('./cherry.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

/* Full-screen blur overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 0;          /* sits behind everything interactive */
    pointer-events: none; /* doesn’t block clicks */
}

/* Make widgets sit above the blur */
body > * {
    position: relative;
    z-index: 1;          /* ensures widgets and top bar stay above blur */
}

