:root {
    --app-bg: #ECE4DD;
    --app-noise-opacity: 0.032;
}

body {
    background-color: var(--app-bg);
    background-image:
        radial-gradient(
            ellipse 90% 45% at 30% 2%,
            hsla(14, 38%, 93%, 0.55) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 70% 40% at 85% 0%,
            hsla(8, 30%, 94%, 0.45) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 100% 35% at 50% 45%,
            hsla(16, 22%, 94%, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 80% 50% at 10% 70%,
            hsla(10, 25%, 94%, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 80% 50% at 90% 80%,
            hsla(14, 18%, 94%, 0.25) 0%,
            transparent 45%
        );
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% 250vh;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: var(--app-noise-opacity);
    background-repeat: repeat;
    background-size: 256px 256px;
}

body > * {
    position: relative;
    z-index: 1;
}

.skeleton-loader {
    background: var(--app-bg);
}

@media (max-width: 768px) {
    body {
        background-size: 200vw 250vh;
        background-position: center top;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
    }
}
