
        @property --clr-1 {
            syntax: "<color>";
            inherits: true;
            initial-value: red;
        }

        @property --clr-2 {
            syntax: "<color>";
            inherits: true;
            initial-value: yellow;
        }

        @property --clr-3 {
            syntax: "<color>";
            inherits: true;
            initial-value: green;
        }

        @property --clr-4 {
            syntax: "<color>";
            inherits: true;
            initial-value: blue;

        }

        @property --clr-5 {
            syntax: "<color>";
            inherits: true;
            initial-value: purple;
        }

        @property --clr-6 {
            syntax: "<color>";
            inherits: true;
            initial-value: red;
        }

        @property --glow-deg {
            syntax: "<angle>";
            inherits: true;
            initial-value: -90deg;
        }


        .glow {
            --grad:
                var(--clr-1),
                var(--clr-2),
                var(--clr-3),
                var(--clr-4),
                var(--clr-5),
                var(--clr-6);
            --glow-opacity: 0.5;
            margin-block: 3rem;
            padding: 8rem 3rem;
            max-width: 100ch;
            border: var(--border-width, 3px) solid transparent;
            border-left: 0;

            border-radius: 0 100vw 100vw 0;
            position: relative;
            isolation: isolate;

            background:
                linear-gradient(Canvas) padding-box,
                conic-gradient(from var(--glow-deg), var(--grad)) border-box;

            animation: borderglow 10s infinite linear;
        }

        @keyframes borderglow {
            100% {
                --glow-deg: 270deg;

            }
        }

        .glow::before,
        .glow::after {
            content: "";
            position: absolute;
            border-radius: inherit;

        }




        .glow::before {
            z-index: -1;
            background: var(--surface, Canvas);
            inset: 0.5rem;


            scale: 1.2 1;
            transform-origin: right;
            filter: blur(var(--glow-size, 0.5rem));

        }


        .glow::after {
            z-index: -2;
            inset: -0.5rem;
            background:
                conic-gradient(from var(--glow-deg), var(--grad), #000) border-box;
            filter: blur(var(--glow-size, 1rem));
            opacity: var(--glow-opacity, 0.5);



        }

        .glow.right {

            /* --grad:yellow, green, orange,  blue, purple, red; */
            margin-inline-start: auto;
            border-radius: 100vw 0 0 100vw;
            border-right: 0;
            border: var(--border-width, 3px) solid transparent;

            &::before {
                transform-origin: left;
            }
        }

















        @layer general-styling {
            * {
                box-sizing: border-box;
            }
        }

        html {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            overflow-x: clip;
            /* --surface: #fff; */

        }

