body {
    font-family: Arial, Helvetica, sans-serif;
    --ds-color-purple-100: #595998;
    --page-background-color: radial-gradient(66.5% 221.21% at 136.03% -61.44%, rgb(120 18 215 / 40%) 0%, rgb(47 8 213 / 0%) 92.09%), radial-gradient(93.54% 126.91% at 29.15% -56.29%, rgb(73 54 217 / 70%) 0%, rgba(157, 121, 127, 0) 92.09%), radial-gradient(86.19% 101.84% at -17.13% -24.8%, rgb(222 34 216 / 70%) 0%, rgb(22 21 30) 92.09%), var(--ds-color-purple-100);
    background: var(--page-background-color);
    background-attachment: fixed;
}

:root {
    --col-width: clamp(100px, 30vw, 200px);
}

html {
    scrollbar-width: none;
    overflow: scroll;
    overflow-x: hidden;
}


button {
    font-style: italic;
    font-weight: 900;
}


button:hover:disabled {
    cursor: not-allowed;
    -webkit-animation: wobble 0.5s 0s linear;
    -moz-animation: wobble 0.5s 0s linear;
    animation: wobble 0.5s 0s linear;
}

.button {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgb(155, 61, 255);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    top: 0;
    right: 0;
}

.button:hover {
    background: rgb(132, 61, 255);
    box-shadow: 0 0 30px 5px rgba(149, 0, 236, 0.81);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.button:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.button::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    text-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}


.button:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}


table {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

th {
    width: var(--col-width);
    text-align: center;
    font-size: x-large;
    color: #c0c0c0;
    text-shadow: 10px 6px 17px rgba(0, 0, 0, 0.66);
    font-family: ClashDisplay-Medium, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
}

tr {
    text-align: center;
    display: flex;
    justify-content: center;
}

td {

    width: var(--col-width);
    text-align: center;
    justify-content: center;

    font-size: large;
    color: #c0c0c0;
    font-family: ClashDisplay-Medium, sans-serif;
    font-weight: 500;
    text-shadow: 10px 6px 17px rgba(0, 0, 0, 0.66);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#leaderboard h3 {
    width: var(--col-width);
    margin: 0;
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: x-large;
    color: #c0c0c0;
    font-family: ClashDisplay-Semibold, sans-serif;
    font-weight: 500;
    text-shadow: 10px 6px 17px rgba(0, 0, 0, 0.66);
}


.leader-board-xp {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

#leaderboard-header {
    margin-top: 50px;
}

.current-user {
    background: linear-gradient(90deg, #db33d841, #6b11a344);
    border: 1.5px solid #eb50e96b;
    border-radius: 20px;
    box-shadow: 2px 2px 3px 0px #00000069;
}

.shadow2 {
    text-shadow: 10px 6px 17px rgba(0, 0, 0, 0.66);
}

.shadow3 {
    filter: drop-shadow(9px 9px 20px #000000);
}

@keyframes wobble {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-5px);
    }

    30% {
        transform: translateX(5px);
    }

    45% {
        transform: translateX(-5px);
    }

    60% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    90% {
        transform: translateX(0px);
    }
}


@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}
