:root {
    --text: #f8f3e8;
}

html {
    background: #07070b;
}

body {
    color: var(--text);
    background:
        linear-gradient(
            rgba(7,7,11,0.75),
            rgba(7,7,11,0.95)
        ),
        url('/themes/tailflux/img/basc.png') center/cover no-repeat fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 45px 45px;
    opacity: 0.6;
}

body::after {
    content: "";
    position: fixed;
    inset: -20%;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle, rgba(255,255,255,0.08), transparent 35%),
        radial-gradient(circle, rgba(245,184,75,0.08), transparent 40%);
    filter: blur(50px);
    opacity: 0.35;
    animation: mistMove 18s ease-in-out infinite alternate;
}

@keyframes mistMove {
    from {
        transform: translate(-4%, -3%) scale(1);
    }
    to {
        transform: translate(4%, 3%) scale(1.08);
    }
}