        body {
            background-color: var(--bg);
            background-image: var(--theme-bg-image);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        body::before {
            content: "";
            position: fixed;
            inset: -22px;
            width: auto;
            height: auto;
            border-radius: 0;
            z-index: 0;
            pointer-events: none;
            background-image: var(--theme-bg-image);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: blur(10px) saturate(1.05);
            transform: scale(1.04);
            opacity: 0.56;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            width: auto;
            height: auto;
            border-radius: 0;
            z-index: 0;
            pointer-events: none;
            filter: none;
            opacity: 1;
            background: rgba(255, 255, 255, 0.42);
            box-shadow: inset 0 0 180px var(--theme-glow);
        }

        body[data-theme="night"]::after {
            background: rgba(8, 17, 31, 0.42);
            box-shadow: inset 0 0 180px var(--theme-glow);
        }
