/* FORCE BACKGROUND - HIGHEST PRIORITY */
html, body {
    background: linear-gradient(rgba(253, 242, 248, 0.3), rgba(253, 242, 248, 0.4)), 
                url('./sakura-bg.jpg') center/cover no-repeat fixed !important;
    background-color: #fdf2f8 !important;
    min-height: 100vh !important;
}

/* Override all possible Tailwind classes */
.bg-gray-50,
.bg-white,
.bg-gray-100,
.bg-slate-50 {
    background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.85)), 
                url('./sakura-bg.jpg') center/cover no-repeat fixed !important;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        background: linear-gradient(rgba(253, 242, 248, 0.5), rgba(253, 242, 248, 0.6)), 
                    url('./sakura-bg.jpg') center/cover no-repeat fixed !important;
    }
}

@media (max-width: 480px) {
    html, body {
        background: linear-gradient(rgba(253, 242, 248, 0.7), rgba(253, 242, 248, 0.8)), 
                    url('./sakura-bg.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
}
