/* SAKURA */
.list-table .list-table-data {
    z-index: 1;
}

.list-table-data {
    padding: 2px;
    border: 1px solid #000;
    background-color: #212121;
    transition: background-color 0.3s;
}

.list-table .list-table-data:hover {
    filter: hue-rotate(0deg);
    background-color: white;
    background-position: center;
    content: '';
    width: 100%;
    height: 100%;
    background-image:
        url(https://i.imgur.com/QqP0mWL.png),
        url(https://i.imgur.com/Io1Lzgf.png),
        url(https://i.imgur.com/Ulp6xjS.png);
    animation: SAKURA 7s linear infinite;
}

@keyframes SAKURA {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 100% 0%;
    }
}

/* Gradient */

.list-container:after {
    position: absolute;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 1000% 1000%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.list-table .list-table-data:hover .data.number,
.list-table .list-table-data:hover a,
.list-table .list-table-data:hover {
    --bg: black !important;
    --text: white;
    --text-h: white;
    --text-dim: white;
    --text-dim-h: white;
    --text-dark: white;
    --btn-bg: black;
}