/* Background CSS for Sakura Theme */
body {
    background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.85)), 
                url('/images/sakura-bg.jpg') center/cover no-repeat fixed !important;
}

/* Responsive background adjustments */
@media (max-width: 768px) {
    body {
        background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), 
                    url('/images/sakura-bg.jpg') center/cover no-repeat fixed !important;
    }
}

@media (max-width: 480px) {
    body {
        background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), 
                    url('/images/sakura-bg.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important; /* Better performance on mobile */
    }
}
