:root {
    --bar-bg: rgba(0, 0, 0, 0.15);
    --bar-blur: blur(10px);
    --hover-color: rgba(242, 145, 29, .2);
    --hover-color2: rgba(242, 145, 29, .7);
    --xxl-color: #F6931D;
    --border-main-color: rgb(46, 46, 46);
    --error-bg: rgba(242, 145, 29, .1);
    --bubble-hover: #121019;
    --min-view-height: calc(100vh - 56px);
    --underline-color: rgba(242, 145, 29, .3);
}

* {
    box-sizing: border-box;
    border-width: 0;
    list-style: none;
    border-style: solid;
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: var(--hover-color2);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: #fff;
}

body::before,
body::after {
    content: "";
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--xxl-color), transparent);
    z-index: 9999;
    pointer-events: none;
}

body::before {
    top: -1px;
    width: 500px;
    left: -100px;
    animation: scan 5s linear infinite;
}

body::after {
    bottom: -1px;
    width: 500px;
    left: -100px;
    animation: scan 5s linear infinite;
}

@keyframes scan {
    0%   { left: -500px; }
    100% { left: 100vw; }
}
