.shine, .sm-shine {
    --x-px: calc(var(--x) * 1px + 0px);
    --y-px: calc(var(--y) * 1px + 0px);
    --opacity: 0;
    --border: 2px;
    background: rgba(255, 255, 255, 0.125);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}
.shine:before, .shine:after, .sm-shine:before, .sm-shine:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    inset: 0;
    border-radius: inherit;
    opacity: var(--opacity);
}
.shine:before, .shine:after {
    background: radial-gradient(300px circle at var(--x-px) var(--y-px), rgba(230, 230, 230, 0.4), transparent 40%);
}
.sm-shine:before, .sm-shine:after {
    background: radial-gradient(300px circle at var(--x-px) var(--y-px), rgba(230, 230, 230, 0.4), transparent 80%);
}
.shine:before, .sm-shine:before {
    z-index: 1;
}
.shine:after, .sm-shine:after {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.shine:hover:after, .sm-shine:hover:after {
    opacity: 1;
}

.link-hover-underline {
    --hover-color: #222635;
}

.link-hover-underline-blue {
    --hover-color: #0073e3;
}

.link-hover-underline,
.link-hover-underline-blue {
    color: inherit;
    text-decoration: none !important;
    background: linear-gradient(0deg, var(--hover-color), var(--hover-color)) no-repeat right bottom / 0 2px;
    transition: background-size 350ms;
    padding-bottom: 2px;
}

.link-hover-underline-active {
    color: var(--hover-color) !important;
    background-size: 100% 2px;
    background-position-x: left;
}

.link-hover-underline:where(:hover, :focus-visible) {
    color: var(--hover-color) !important;
    background-size: 100% 2px;
    background-position-x: left;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: rgba(64, 198, 251,0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(64, 198, 251, 0.4);
}