:root{
    --bg:#060606;
    --bg2:#111111;
    --panel:#161616;
    --border:rgba(255,255,255,.10);
}

html,
body{
    margin:0;
    min-height:100%;
    background:
        radial-gradient(circle at top,#1d1d1d 0%,#0c0c0c 32%,#060606 75%);
    color:#fff;
    font-family:Inter,Arial,Helvetica,sans-serif;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 50% 20%,
            rgba(255,255,255,.045),
            transparent 55%);
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    box-shadow:
        inset 0 0 220px rgba(0,0,0,.65);
}

.page,
.wrapper,
.container,
main{
    position:relative;
    z-index:1;
}
