    * {
        list-style-type: none;
        text-decoration: none;
        box-sizing: border-box;
        user-select: none;
        font-family: 'Bricolage Grotesque', sans-serif;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 210%;
        height: 130%;
        transform: translateX(-50%);
        background-image: url('./season8.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: -1;
        animation: bgMove 69s linear infinite;
    }

    @keyframes bgMove {
        0% {
            transform: translateX(-50%) translateY();
        }

        50% {
            transform: translateX(-30%) translateY(-15%);
        }

        100% {
            transform: translateX(-50%) translateY(0);
        }
    }

    .box {
        text-align: center;
        color: #fff;
    }

    .box h1 {
        font-size: 44px;
    }

    .gradient-text,
    .text-style,
    .link {
        background: linear-gradient(90deg, #ffdd00, #835e00, rgb(255, 123, 0), rgb(255, 123, 0), #ff0088);
        background-size: 400% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        animation: neonSwipe 1s linear infinite;
    }

    .box p {
        font-weight: 600;

        background: linear-gradient(90deg,
                rgb(255, 134, 48) 0%,
                rgb(123, 255, 0) 25%,
                rgb(255, 81, 0) 50%,
                rgb(255, 196, 0) 75%,
                silver 100%);
        background-size: 400% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: swipeGlow 1s linear infinite;
    }

    .tooltip {
        position: fixed;
        background: #00000074;
        color: #fff;
        padding: 6px 12px;
        border-radius: 10px;
        font-weight: 600;
        backdrop-filter: blur(33px);
        pointer-events: none;
        z-index: 99999;
        display: flex;
        align-items: center;
    }

    .warning {
        width: 120px;
    }

    .skin {
        width: 50%;
        left: 65%;
        position: absolute;
        z-index: -1;
        top: 20%;
    }

    .logo1 {
        width: 98px;
        z-index: -1;
        justify-content: left;
        display: inline-block;
        position: absolute;
        top: 3%;
        left: 15%;
        margin: 0px;
        padding: 0px;
    }

    .links {
        margin-top: 30px;
        gap: 30px;
        text-align: center;
    }

    .links a {
        margin-left: 8px
    }

    .link-item {
        display: inline-flex;
        align-items: center;
        padding: 7.5px;
        border-radius: 6px;
        background: rgba(8, 16, 30, 0.651);
        background-size: 400% 600%;
        color: white;
        font-weight: normal;
        text-decoration: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.482);
        transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
    }

    .link-item:hover {
        transform: translateY(-3px);
        background-size: 400% 600%;
    }

    .icon {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        margin-right: 8px;
    }