#Header {
    background-color: #03081c;
    background-repeat: no-repeat;
    border-bottom: 1px solid #363f49;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.89);
    display: block;
    height: 130px;
    left: 0;
    min-width: 1200px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 1000;
}

#Header.scrolled {
    background: #03081c !important;
    border-bottom: 1px solid #363f49 !important;
}

#Header.logouted.main {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

#Header .InnerBox {
    height: 130px;
    left: 50%;
    max-width: 2200px;
    position: absolute;
    transform: translate(-50%);
    width: 100%;
}

#Header .InnerBox .logo {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 600;
    left: 20px;
    letter-spacing: -1px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

#Header .InnerBox .logo img {
    transition: filter 0.3s ease;
}

#Header .InnerBox .logo .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(
        138deg,
        transparent 0%,
        transparent 20%,
        rgba(0, 66, 255, 0.1) 30%,
        rgba(0, 66, 255, 0.3) 40%,
        rgba(0, 66, 255, 0.9) 100%
    );
    mask-image: url('/assets/images/logo.webp');
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: top;
}

#Header .InnerBox .logo:hover .hover-overlay {
    opacity: 1;
}

#Footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 240px;
    background: #03081c;
}

#Footer .logo {
    display: block;
}

#Footer .copyright {
    text-align: center;
    font-size: 12px;
    color: #adbac9;
    margin-top: 20px;
}

.can-contextmenu {
    cursor: pointer;
    display: none;
    min-width: 100px;
    position: absolute;
    transition: opacity 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 100;
}

.can-contextmenu.init,
.can-contextmenu:hover {
    display: flex;
    flex-direction: column;
    width: auto;
}

.can-contextmenu.hide {
    display: none !important;
}

.can-contextmenu .can-contextmenu-item {
    position: relative;
}

.can-contextmenu .can-contextmenu-item .label {
    align-items: center;
    background: #181d25;
    border: 1px solid #263549;
    border-bottom: 0;
    color: #fff2f2;
    display: flex;
    font-size: 11px;
    height: 30px;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    text-align: center;
}

.can-contextmenu .can-contextmenu-item .label:hover {
    color: #c37cff;
}

.can-contextmenu .can-contextmenu-item .can-contextmenu-children {
    opacity: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    top: 0;
    transform: none;
    transition: all 0.3s;
    width: 100px;
}

.can-contextmenu
    .can-contextmenu-item
    .can-contextmenu-children:first-child
    .label {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.can-contextmenu
    .can-contextmenu-item
    .can-contextmenu-children:last-child
    .label {
    border-bottom: 1px solid #1b222c;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.can-contextmenu .can-contextmenu-item:hover > .can-contextmenu-children {
    left: -10px;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 0;
    transform: translate(calc(100% + 10px));
    transition: all 0.3s;
}

.can-contextmenu
    .can-contextmenu-item:hover
    > .can-contextmenu-children
    .can-contextmenu-item:first-child
    .label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.can-contextmenu
    .can-contextmenu-item:hover
    > .can-contextmenu-children
    .can-contextmenu-item
    .label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.can-contextmenu
    .can-contextmenu-item:hover
    > .can-contextmenu-children
    .can-contextmenu-item:last-child
    .label {
    border-bottom: 1px solid #1b222c;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.can-contextmenu .can-contextmenu-item:first-child .label {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.can-contextmenu .can-contextmenu-item:last-child .label {
    border-bottom: 1px solid #1b222c;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.MainAfterLoginVisualBox {
    background: #030304;
    border-bottom: 1px solid #363737;
    display: block;
    height: 415px;
    position: relative;
}

.MainAfterLoginVisualBox .visualSet {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.MainAfterLoginVisualBox .visualSet .background {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 415px;
    margin: -1px;
    overflow: hidden;
    transition: all 0.3s;
}

.MainAfterLoginVisualBox .visualSet .background,
.MainAfterLoginVisualBox .visualSet .model {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.MainAfterLoginVisualBox .visualSet .model {
    height: 400px;
    max-width: 2200px;
    min-width: 1200px;
    overflow: visible;
    transition-delay: 0ms;
    transition-duration: 0.3s;
    transition-property: all;
}

.MainAfterLoginVisualBox .visualSet .model img {
    display: block;
    -o-object-fit: fill;
    object-fit: fill;
    position: absolute;
    right: 0;
    top: -20px;
    transform: scale(0.95);
    transition: all 0.2s;
}

.MainAfterLoginVisualBox .visualSet .entity {
    display: block;
    height: 400px;
    left: 50%;
    max-width: 2200px;
    min-width: 1200px;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition-delay: 0ms;
    transition-duration: 0.3s;
    transition-property: all;
    width: 100%;
}

.MainAfterLoginVisualBox .visualSet .entity img {
    animation: animate_heart_beat 1s ease infinite;
    display: block;
    -o-object-fit: fill;
    object-fit: fill;
    position: absolute;
    right: 480px;
    top: 80px;
    transition: all 0.2s;
}

@keyframes animate_heart_beat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    to {
        transform: scale(1);
    }
}

.MainAfterLoginVisualBox .visualSet .largeLabel {
    display: block;
    height: 400px;
    left: 50%;
    max-width: 2200px;
    min-width: 1200px;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition-delay: 0ms;
    transition-duration: 0.3s;
    transition-property: all;
    width: 100%;
}

.MainAfterLoginVisualBox .visualSet .largeLabel img {
    display: block;
    left: 30px;
    -o-object-fit: none;
    object-fit: none;
    position: absolute;
    top: -50px;
    transition-duration: 0.5s;
    filter: hue-rotate(43deg) brightness(0.9) saturate(5);
}

.MainAfterLoginVisualBox .visualSet .smallLabel {
    display: block;
    height: 400px;
    left: 50%;
    max-width: 2200px;
    min-width: 1200px;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    transition-delay: 0ms;
    transition-duration: 0.3s;
    transition-property: all;
    width: 100%;
}

.MainAfterLoginVisualBox .visualSet .smallLabel img {
    display: block;
    left: 30px;
    -o-object-fit: none;
    object-fit: none;
    position: absolute;
    top: 350px;
    transition-duration: 0.5s;
}

.MainAfterLoginVisualBox .visualSet.Active {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.MainAfterLoginVisualBox .visualSet.Active .background {
    opacity: 1;
    transition: all 0.3s;
}

.MainAfterLoginVisualBox .visualSet.Active .entity,
.MainAfterLoginVisualBox .visualSet.Active .model {
    opacity: 1;
    transition-delay: 0.2s;
    transition-duration: 0.5s;
    transition-property: all;
}

.MainAfterLoginVisualBox .visualSet.Active .largeLabel {
    opacity: 1;
}

.MainAfterLoginVisualBox .visualSet.Active .largeLabel img {
    top: 120px;
    transition-duration: 0.5s;
    transition-property: all;
}

.MainAfterLoginVisualBox .visualSet.Active .smallLabel {
    opacity: 1;
}

.MainAfterLoginVisualBox .visualSet.Active .smallLabel img {
    top: 230px;
    transition-duration: 0.5s;
    transition-property: all;
}

.MainAfterLoginVisualBox .visualNav {
    bottom: -50px;
    display: flex;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
}

.MainAfterLoginVisualBox .visualNav div {
    background: #222a3f;
    border-radius: 10px;
    cursor: pointer;
    height: 20px;
    margin-left: 8px;
    margin-right: 8px;
    width: 20px;
}

.MainAfterLoginVisualBox .visualNav div.Active {
    background: #fff;
    box-shadow: 0 0 0 #fff, 0 0 10px #8600f7, 0 0 30px #8600f7;
    transition: all 0.5s;
    width: 50px;
}

.MainBeforeLoginVisualBox {
    background: #0b0e18;
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 130px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.MainBeforeLoginVisualBox img {
    -webkit-user-drag: none;
    width: calc(min(768px, 100vw) * 0.18);
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox img {
        width: calc(min(768px, 100vw) * 0.14);
    }
}

@media screen and (max-width: 2000px) {
    .MainBeforeLoginVisualBox .resize {
        transform: scale(70%);
    }
}

.MainBeforeLoginVisualBox .visualSet {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.MainBeforeLoginVisualBox .visualSet .background {
    bottom: 0;
    display: flex;
    height: 100vh;
    left: 0;
    opacity: 0;
    place-content: center;
    place-items: center;
    position: absolute;
    right: 0;
    transition: all 0.3s;
    width: 100vw;
}

.MainBeforeLoginVisualBox .visualSet .background:after {
    background: radial-gradient(
        circle,
        rgba(14, 28, 53, 0) 0,
        rgba(0, 0, 0, 0.779) 100%
    );
    content: '';
    inset: 0;
    position: absolute;
}

.MainBeforeLoginVisualBox .visualSet .background img {
    bottom: 0;
    display: block;
    height: 100vh;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
}

.MainBeforeLoginVisualBox .visualSet .background .iframe_vimeo {
    height: max(2.4444444444 * max(100vw, 1920px), max(100vh, 1080px));
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max(max(100vw, 1920px), 2.4444444444 * max(100vh, 1080px));
}

.MainBeforeLoginVisualBox .visualSet .element {
    bottom: 100px;
    display: flex;
    height: 459px;
    justify-content: space-between;
    left: 0;
    margin: 0 auto;
    max-width: 1400px;
    position: absolute;
    right: 0;
}

@media screen and (max-width: 1600px) {
    .MainBeforeLoginVisualBox .visualSet .element {
        bottom: -50px;
        margin: 0 150px;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .right {
    position: relative;
}

.MainBeforeLoginVisualBox .visualSet .element .right .minigame {
    cursor: pointer;
    display: flex;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .right .minigame {
        position: relative;
        top: 50px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame
    .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame
    .hexa-img-container
    .minigame-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox .visualSet .element .right .minigame .container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame
    .container
    .minigame-title {
    color: #2148f4;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .right
        .minigame
        .container
        .minigame-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame
    .container
    .minigame-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: left;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame:hover
    .minigame-subtitle,
.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame:hover
    .minigame-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame:hover
    .hexa-img-container
    .minigame-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .minigame:hover
    .hexa-img-container
    .minigame-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .element .right .bjcreator {
    cursor: pointer;
    display: flex;
    left: -68px;
    position: absolute;
    top: 120px;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .right .bjcreator {
        position: relative;
        top: 20px;
        left: -50px;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .right .bjcreator .container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator
    .container
    .bjcreator-title {
    color: #6bd15c;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .right
        .bjcreator
        .container
        .bjcreator-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator
    .container
    .bjcreator-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: left;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator
    .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator
    .hexa-img-container
    .bjcreator-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator:hover
    .bjcreator-subtitle,
.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator:hover
    .bjcreator-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator:hover
    .hexa-img-container
    .bjcreator-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .bjcreator:hover
    .hexa-img-container
    .bjcreator-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .element .right .sports {
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 240px;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .right .sports {
        position: relative;
        top: -10px;
        left: 0;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .right .sports .container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports
    .container
    .sports-title {
    color: #d29b31;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .right
        .sports
        .container
        .sports-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports
    .container
    .sports-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: left;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports
    .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports
    .hexa-img-container
    .sports-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports:hover
    .sports-subtitle,
.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports:hover
    .sports-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports:hover
    .hexa-img-container
    .sports-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .right
    .sports:hover
    .hexa-img-container
    .sports-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .element .center {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    min-width: 350px;
}

.MainBeforeLoginVisualBox .visualSet .element .center .logo {
    margin-right: -20px;
    width: 330px;
}

.MainBeforeLoginVisualBox .visualSet .element .center .logo-label {
    filter: hue-rotate(199deg) brightness(0.9) saturate(15);
    width: unset !important;
}

@media screen and (max-width: 1600px) {
    .MainBeforeLoginVisualBox .visualSet .element .center .logo,
    .MainBeforeLoginVisualBox .visualSet .element .center .logo-label {
        transform: scale(70%);
    }
}

.MainBeforeLoginVisualBox .visualSet .element .center .main-login-button {
    background: #8600f7;
    border: 1px solid #7d2cc5;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    padding: 18px 32px;
    z-index: 1000;
}

.MainBeforeLoginVisualBox .visualSet .element .center .main-login-button:hover {
    background: #c37cff;
    border: 1px solid #c37cff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet .element .left {
    position: relative;
}

.MainBeforeLoginVisualBox .visualSet .element .left .slot {
    cursor: pointer;
    display: flex;
    flex-direction: row-reverse;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .left .slot {
        position: relative;
        top: 50px;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .left .slot .container {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot
    .container
    .slot-title {
    color: #e33fe7;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .left
        .slot
        .container
        .slot-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot
    .container
    .slot-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: right;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox .visualSet .element .left .slot .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot
    .hexa-img-container
    .slot-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox .visualSet .element .left .slot:hover .slot-subtitle,
.MainBeforeLoginVisualBox .visualSet .element .left .slot:hover .slot-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot:hover
    .hexa-img-container
    .slot-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .slot:hover
    .hexa-img-container
    .slot-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .element .left .esports {
    cursor: pointer;
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    right: -68px;
    top: 120px;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .left .esports {
        position: relative;
        top: 20px;
        right: -50px;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .left .esports .container {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports
    .container
    .esports-title {
    color: #6958dc;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .left
        .esports
        .container
        .esports-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports
    .container
    .esports-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: right;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports
    .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports
    .hexa-img-container
    .esports-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports:hover
    .esports-subtitle,
.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports:hover
    .esports-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports:hover
    .hexa-img-container
    .esports-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .esports:hover
    .hexa-img-container
    .esports-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .element .left .casino {
    cursor: pointer;
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: 240px;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox .visualSet .element .left .casino {
        position: relative;
        top: -10px;
        left: 0;
    }
}

.MainBeforeLoginVisualBox .visualSet .element .left .casino .container {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 8px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino
    .container
    .casino-title {
    color: #da501a;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
    .MainBeforeLoginVisualBox
        .visualSet
        .element
        .left
        .casino
        .container
        .casino-title {
        font-size: 20px;
    }
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino
    .container
    .casino-subtitle {
    color: #b7b4b4;
    font-size: 8px;
    font-weight: lighter;
    opacity: 0.5;
    text-align: right;
    text-transform: uppercase;
    width: 200px;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino
    .hexa-img-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    position: relative;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino
    .hexa-img-container
    .casino-bg {
    filter: hue-rotate(200deg);
    inset: 0;
    left: -27px;
    opacity: 0;
    position: absolute;
    top: -12px;
    transition: opacity 0.5s ease;
    width: 135%;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino:hover
    .casino-subtitle,
.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino:hover
    .casino-title {
    color: #fff;
    text-shadow: 0 0 24px #fc69ff;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino:hover
    .hexa-img-container {
    filter: drop-shadow(0 0 15px rgba(252, 105, 255, 0.5019607843));
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino:hover
    .hexa-img-container
    .casino-image {
    clip-path: polygon(0 0, 75% 0, 100% 5%, 95% 100%, 25% 100%, 0 70%);
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox
    .visualSet
    .element
    .left
    .casino:hover
    .hexa-img-container
    .casino-bg {
    opacity: 1;
}

.MainBeforeLoginVisualBox .visualSet .label {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translate(-50%);
    transition: all 0.3s;
    width: 1200px;
}

.MainBeforeLoginVisualBox .visualSet .label.large img {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 150px;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet .label.small img {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 320px;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet .entity {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translate(-50%);
    transition: all 0.3s;
    width: 1200px;
}

.MainBeforeLoginVisualBox .visualSet .entity.right img {
    display: block;
    position: absolute;
    right: -350px;
    top: 250px;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet .entity.left img {
    display: block;
    left: -150px;
    position: absolute;
    top: 400px;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet .particle {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 400px;
    transform: scale(70%) translate(-50%);
    transition: all 0.3s;
}

.MainBeforeLoginVisualBox .visualSet.Active {
    bottom: 0;
    display: block;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
}

.MainBeforeLoginVisualBox .visualSet.Active .background {
    opacity: 0.8;
    transition: all 0.3s;
}

.MainBeforeLoginVisualBox .visualSet.Active .label {
    opacity: 1;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualSet.Active .label.large img {
    display: block;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 200px;
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.MainBeforeLoginVisualBox .visualSet.Active .label.small img {
    display: block;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 270px;
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.MainBeforeLoginVisualBox .visualSet.Active .entity,
.MainBeforeLoginVisualBox .visualSet.Active .particle {
    opacity: 1;
    transition: all 0.5s;
}

.MainBeforeLoginVisualBox .visualNav {
    bottom: 70px;
    display: none;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
}

.MainBeforeLoginVisualBox .visualNav div {
    background: #222a3f;
    border-radius: 10px;
    cursor: pointer;
    height: 20px;
    margin-left: 8px;
    margin-right: 8px;
    width: 20px;
}

.MainBeforeLoginVisualBox .visualNav div.Active {
    background: #fff;
    box-shadow: 0 0 0 #fff, 0 0 10px #8600f7, 0 0 30px #8600f7;
}

@keyframes animate_grow_1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@keyframes animate_grow_2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

@keyframes animate_grow_3 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    to {
        transform: scale(1);
    }
}

@keyframes punch {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(15px, -15px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes bounce {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    to {
        transform: translate(0);
    }
}

.animate_grow_1 img {
    animation: animate_grow_1 3s ease-in-out infinite;
}

.animate_grow_2 img {
    animation: animate_grow_2 3s ease-in-out infinite;
}

.animate_grow_3 img {
    animation: animate_grow_3 3s ease-in-out infinite;
}

.animate_punch img {
    animation: punch 3s ease-in-out infinite;
}

.animate_bounce img {
    animation: bounce 3s ease-in-out infinite;
}

#PageMain {
    display: block;
    text-align: center;
}

#PageMain > div > .title {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-left: 20px;
}

#PageMain > div > .content {
    margin-top: 30px;
}

#PageMain > .popularGame {
    display: block;
    margin: 60px auto 0;
    max-width: 2200px;
    min-width: 1200px;
    padding-top: 40px;
    width: 100%;
}

#PageMain > .popularGame .title img {
    filter: hue-rotate(217deg) brightness(0.8) saturate(1);
}

#PageMain > .popularGame .content {
    display: block;
}

#PageMain > .popularGame .content .slideBox {
    align-items: center;
    display: flex;
    gap: 20px;
    grid-template-rows: none;
    height: 450px;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
}

#PageMain > .popularGame .content .slideBox:before {
    background: linear-gradient(90deg, #0c0e17, transparent);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 250px;
    z-index: 1;
}

#PageMain > .popularGame .content .slideBox:after {
    background: linear-gradient(270deg, #0c0e17, transparent);
    bottom: 0;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    z-index: 1;
}

#PageMain > .popularGame .content .slideBox a {
    animation: slideRight 20s linear infinite;
    flex: 1 0 350px;
}

@keyframes slideRight {
    to {
        transform: translateX(-634%);
    }
}

#PageMain > .popularGame .content .slideBox a .gameCard {
    background: #171d26;
    border: 1px solid #161c24;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.267),
        inset 0 0 50px rgba(0, 0, 0, 0.267);
    cursor: pointer;
    display: block;
    flex-shrink: 0;
    height: 400px;
    margin-left: 0;
    position: relative;
    transition: all 0.5s;
}

#PageMain > .popularGame .content .slideBox a .gameCard .visualImage {
    align-items: center;
    bottom: 130px;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 90px;
    transform: scale(0.7);
    transition: all 0.3s;
}

#PageMain > .popularGame .content .slideBox a .gameCard .label {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 10px;
}

#PageMain > .popularGame .content .slideBox a .gameCard .label .largeLabel {
    color: #c37cff;
    font-size: 20px;
    font-weight: 600;
}

#PageMain > .popularGame .content .slideBox a .gameCard .label .smallLabel {
    color: #6d747b;
    font-size: 18px;
    font-weight: 400;
    padding-left: 10px;
}

#PageMain > .popularGame .content .slideBox a .gameCard .description {
    align-items: center;
    bottom: 70px;
    color: #6d747b;
    display: flex;
    font-size: 12px;
    height: 50px;
    justify-content: center;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    right: 0;
}

#PageMain > .popularGame .content .slideBox a .gameCard .button {
    align-items: center;
    background: #1b222c;
    border: 1px solid #6d747b;
    border-radius: 20px;
    bottom: 15px;
    color: #ded9e3;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    left: 15px;
    position: absolute;
    right: 15px;
}

#PageMain > .popularGame .content .slideBox a .gameCard:hover {
    background: #0b0e18;
    border: 1px solid #8600f7;
    box-shadow: 0 0 10px #8600f7;
    transition: all 0.5s;
}

#PageMain > .popularGame .content .slideBox a .gameCard:hover .visualImage {
    align-items: center;
    bottom: 130px;
    display: flex;
    filter: grayscale(0) brightness(1);
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 90px;
    transform: scale(0.8);
    transition: all 0.3s;
}

#PageMain > .popularGame .content .slideBox a .gameCard:hover .description {
    color: #c37cff;
}

#PageMain
    > .popularGame
    .content
    .slideBox
    a
    .gameCard:hover
    .label
    .largeLabel {
    color: #fff;
    text-shadow: 0 0 5px #c37cff, 0 0 8px #8600f7, 0 0 10px #8600f7,
        0 0 15px #8600f7, 0 0 20px #8600f7, 0 0 30px #8600f7;
    transition: all 0.1s;
}

#PageMain
    > .popularGame
    .content
    .slideBox
    a
    .gameCard:hover
    .label
    .smallLabel {
    color: #fff;
    text-shadow: 0 0 0 #fff;
    transition: all 0.1s;
}

#PageMain > .popularGame .content .slideBox a .gameCard:hover .button {
    background: #000;
    border: 1px solid #8600f7;
    color: #fff;
    text-shadow: 0 0 5px #c37cff, 0 0 8px #8600f7, 0 0 10px #8600f7,
        0 0 15px #8600f7, 0 0 20px #8600f7, 0 0 30px #8600f7;
}

#PageMain > .popularGame .content .slideBox a .gameCard.slide {
    animation: slide 1s;
}

#PageMain > .popularGame .content .slideBox a .gameCard.slideIn {
    animation: fadeIn 1s;
}

#PageMain > .popularGame .content .slideBox a .gameCard.slideOut {
    animation: slideOut 1s;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

#PageMain > .liveSports {
    background-image: url(https://file.onetopdev.com/img/frontend/livesports-background.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 2200px;
    min-width: 1200px;
    position: relative;
    width: 97%;
}

#PageMain > .liveSports .liveSports-border {
    height: 110%;
    inset: 0;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 101%;
}

#PageMain > .liveSports .content {
    margin-bottom: 50px;
    width: 75%;
}

#PageMain > .liveSports .content .SportsMatch {
    transition: none;
}

#PageMain > .liveSports .content .SportsMatch:hover {
    background: url(https://file.onetopdev.com/img/frontend/electric.webp)
            no-repeat 0,
        url(https://file.onetopdev.com/img/frontend/electric.webp) no-repeat
            100% #1b222c;
    background-blend-mode: screen;
    background-size: 530px auto;
}

@media screen and (max-width: 1600px) {
    #PageMain > .liveSports .content a .SportsMatch .eventAt {
        display: none;
    }

    #PageMain > .liveSports .content a .SportsMatch .awayTeam,
    #PageMain > .liveSports .content a .SportsMatch .homeTeam {
        font-size: 9px;
    }
}

#PageMain > .liveSports .liveSports-title {
    bottom: -75px;
    position: absolute;
}

#PageMain > .liveSports .title img {
    filter: hue-rotate(209deg) brightness(0.8) saturate(1);
}

#PageMain > .esports {
    display: block;
    margin: 0 auto;
    max-width: 2200px;
    min-width: 1200px;
    padding-top: 60px;
    width: 100%;
}

#PageMain > .esports .title img {
    filter: hue-rotate(209deg) brightness(0.8) saturate(1);
}

#PageMain > .esports .content {
    display: block;
    height: 340px;
    max-width: 2200px;
    min-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}

#PageMain > .esports .content .ESportsMatch {
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.333);
    filter: brightness(1) grayscale(0);
    left: 20px;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 60px;
    transform: scale(1.05);
    transition: all 0.8s;
}

#PageMain > .esports .content .ESportsMatch .label {
    background: url(https://file.onetopdev.com/img/frontend/electric.webp) 0
            no-repeat,
        #1b222c;
    background-blend-mode: screen;
    background-size: cover;
}

#PageMain > .esports .content .ESportsMatch:after {
    z-index: 0;
}

#PageMain > .esports .content .ESportsMatch.order-0 {
    filter: brightness(0.8) grayscale(0.2);
    left: 20px;
    opacity: 0;
    right: 20px;
    top: 55px;
    transform: scale(0.9);
    transition: all 0ms;
    z-index: 10;
}

#PageMain > .esports .content .ESportsMatch.order-1 {
    filter: brightness(0.8) grayscale(0.2);
    left: 20px;
    opacity: 0.8;
    right: 20px;
    top: 40px;
    transform: scale(0.9);
    transition: all 1.4s;
    z-index: 10;
}

#PageMain > .esports .content .ESportsMatch.order-2 {
    filter: brightness(0.9) grayscale(0.1);
    left: 20px;
    opacity: 1;
    right: 20px;
    top: 25px;
    transform: scale(0.95);
    transition: all 1.2s;
    z-index: 20;
}

#PageMain > .esports .content .ESportsMatch.order-3 {
    filter: brightness(1) grayscale(0);
    left: 20px;
    opacity: 1;
    right: 20px;
    top: 0;
    transform: scale(1);
    transition: all 1s;
    z-index: 30;
}

#PageMain > .ranking {
    margin: 0 auto;
    max-width: 2200px;
    min-width: 1200px;
    width: 100%;
}

#PageMain > .ranking .title img {
    filter: hue-rotate(209deg) brightness(0.8) saturate(1);
}

#PageMain > .ranking > .content {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    max-width: 2200px;
    min-width: 1200px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

#PageMain > .ranking > .content > .box {
    background: #1c222c;
    border: 1px solid #32383f;
    border-radius: 30px;
    height: 500px;
}

#PageMain > .ranking > .content > .box.chatbox {
    background: #00010d;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 280px;
    padding: 10px 10px 30px;
    position: relative;
    width: 16vw;
    z-index: 10;
    flex: 3;
}

#PageMain > .ranking > .content > .box.chatbox .chatbox-border {
    height: 110%;
    inset: 0;
    left: -13px;
    position: absolute;
    top: -10px;
    width: 104%;
    z-index: 10;
}

#PageMain > .ranking > .content > .box.chatbox .settings {
    display: flex;
    height: 60px;
    justify-content: right;
    position: absolute;
    right: -25px;
    top: -30px;
    transition: all 1s;
    width: 60px;
    z-index: 13;
}

#PageMain > .ranking > .content > .box.chatbox .settings img {
    cursor: pointer;
    height: 100%;
    width: 100%;
}

#PageMain > .ranking > .content > .box.chatbox .settings:hover {
    transform: rotate(1turn);
}

#PageMain > .ranking > .content > .box.chatbox > .messages {
    border-radius: 20px;
    flex-grow: 1;
    margin-bottom: 40px;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 11;
}

#PageMain > .ranking > .content > .box.chatbox > .messages::-webkit-scrollbar {
    border-radius: 3px;
    width: 5px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages::-webkit-scrollbar-track {
    background: transparent;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}

#PageMain > .ranking > .content > .box.chatbox > .messages .message {
    align-items: center;
    border-bottom: 1px solid #293443;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 80px;
}

#PageMain > .ranking > .content > .box.chatbox > .messages .message .left {
    align-items: center;
    display: flex;
    flex: 1;
    flex-basis: 190px;
    gap: 15px;
    padding-left: 3px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .icon {
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 1px 0 2px rgba(157, 18, 203, 0.25),
        0 -1px 0 2px rgba(203, 54, 115, 0.25),
        1px 0 0 2px rgba(157, 18, 203, 0.25),
        -1px 0 0 2px rgba(203, 54, 115, 0.25),
        1px -1px 0 2px rgba(180, 36, 159, 0.5),
        -1px 1px 0 2px rgba(180, 36, 159, 0.5),
        1px 1px 0 2px rgba(134, 0, 247, 0.75),
        -1px -1px 0 2px rgba(225, 72, 71, 0.75);
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    width: 40px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .icon
    img {
    border-radius: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .message-content {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .message-content
    .content {
    color: #6a7f9a;
    font-weight: 700;
    position: relative;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .message-content
    .content
    img {
    margin-left: 25px;
    height: 60px;
    width: 60px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .message-content
    .content
    .blinded-chat {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: rgba(134, 0, 247, 0.25);
    bottom: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .left
    .message-content
    .content
    .text {
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    white-space: break-spaces;
    word-break: break-all;
}

#PageMain > .ranking > .content > .box.chatbox > .messages .message .right {
    flex-shrink: 0;
    padding-right: 12px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .right
    .datetime {
    color: #fff;
    font-size: 11px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .messages
    .message
    .right
    .nickname {
    color: #c37cff;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 5px;
    text-align: right;
}

#PageMain > .ranking > .content > .box.chatbox > .sender {
    background: #16181e;
    border: 1px solid #32383f;
    border-radius: 20px;
    flex-shrink: 0;
    height: 100px;
    position: relative;
    z-index: 13;
}

#PageMain > .ranking > .content > .box.chatbox > .sender .chatbox-entity-1 {
    left: -30px;
    position: absolute;
    top: 50%;
    transform: translateY(-57%);
    z-index: 12;
}

#PageMain > .ranking > .content > .box.chatbox > .sender > .inputwrap {
    background: #0e1018;
    border: 1px solid #32383f;
    border-radius: 20px;
    bottom: -1px;
    height: 120px;
    left: -1px;
    position: absolute;
    right: -1px;
}

#PageMain > .ranking > .content > .box.chatbox > .sender > .inputwrap > input {
    background: transparent;
    border: 0;
    bottom: 30px;
    color: #fff;
    font-size: 14px;
    left: 100px;
    outline: none;
    position: absolute;
    right: 100px;
    top: 30px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .sender
    > .inputwrap
    > .btn-submit {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .sender
    > .inputwrap
    > .btn-submit
    img {
    height: 100%;
    transition: all 0.3s;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    > .sender
    > .inputwrap
    > .btn-submit:hover
    img {
    filter: drop-shadow(0 0 10px #c37cff);
}

#PageMain > .ranking > .content > .box.chatbox .chat-gpt-control-container {
    align-items: center;
    animation: slideDown 0.5s forwards;
    background-color: #0b0e17;
    border: 3px solid #8600f7;
    border-radius: 5px;
    bottom: 83px;
    display: flex;
    left: 5%;
    position: absolute;
    transform: translateX(-50%);
    transition: all 0.5s;
    width: calc(100% - 40px);
    z-index: 12;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container.show {
    transform: translate(-50%, -68px);
    z-index: 13;
    margin-bottom: 70px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .chat-menu-icon-container {
    align-items: center;
    background-color: #0b0e17;
    border: 2px solid #8600f7;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    right: 3px;
    top: -34px;
    transform: rotate(90deg);
    width: 22px;
    z-index: 100;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .chat-menu-icon-container
    .chat-menu-icon {
    height: 20px;
    opacity: 0.4;
    width: 20px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .chat-menu-icon-container
    .chat-menu-icon:hover {
    opacity: 0.7;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .chat-menu-icon-container
    .exit-icon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(1%) saturate(0)
        hue-rotate(323deg) brightness(98%) contrast(88%);
    height: 20px;
    width: 20px;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: space-between;
    margin-left: 8px;
    width: 100%;
    z-index: 120;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group {
    align-items: center;
    display: flex;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group
    .label {
    color: hsla(0, 0%, 100%, 0.6);
    z-index: 100;
    cursor: pointer;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group
    .label.toggle {
    cursor: pointer;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group.right {
    justify-content: flex-start;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group.left {
    justify-content: flex-end;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group.disabled
    .CanSlider,
#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .control-set
    .control-group.disabled
    .label {
    opacity: 0.3;
}

#PageMain
    > .ranking
    > .content
    > .box.chatbox
    .chat-gpt-control-container
    .CanSlider {
    margin: 0 5px;
}

#PageMain > .ranking > .content > .box.rankingbox {
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
}

#PageMain > .ranking > .content > .box.rankingbox > .visual {
    display: none;
    flex-shrink: 0;
    width: 346px;
}

#PageMain > .ranking > .content > .box.rankingbox > .visual > .btn-detail {
    align-items: center;
    background: #1989b4;
    border: 1px solid #16b8f2;
    color: #efefef;
    cursor: pointer;
    display: flex;
    font-family: GmarketSans, sans-serif;
    font-size: 14px;
    height: 40px;
    justify-content: center;
    margin-left: 40px;
    margin-right: 40px;
    transition: all 0.2s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .visual
    > .btn-detail:hover {
    background: #116180;
    border: 1px solid #16b8f2;
    color: #fff;
    transition: all 0.2s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .visual
    > .btn-detail:active {
    background: #1981a9;
}

#PageMain > .ranking > .content > .box.rankingbox > .rankingwrap {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 10px;
    min-width: 610px;
    padding: 20px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    .rankingwrap-border {
    height: 110%;
    inset: 0;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 101%;
}

#PageMain > .ranking > .content > .box.rankingbox > .rankingwrap > .nav {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item {
    align-items: center;
    border: 1px solid #6d737a;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    height: 76px;
    margin: 0;
    max-width: 80px;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    transition: all 0.4s;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > .innerbg {
    background: #0b0e18;
    border: 1px solid #2f354d;
    border-radius: 15px;
    bottom: 5px;
    left: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: all 0.4s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > .innerbg
    .light {
    left: 0;
    position: absolute;
    top: 0;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > img.icon {
    flex-shrink: 0;
    height: 40px;
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
    -o-object-position: center;
    object-position: center;
    position: relative;
    width: 40px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > .labelgrp {
    flex-grow: 1;
    opacity: 0;
    position: relative;
    text-align: left;
    transition: all 0.4s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > .labelgrp
    > .label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item
    > .labelgrp
    > .sublabel {
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item.active {
    border: 1px solid #16b8f2;
    max-width: 200px;
    transition: all 0.4s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item.active
    > .innerbg {
    background: #3589b5;
    transition: all 0.4s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav
    > .item.active
    > .labelgrp {
    opacity: 1;
    transition: all 0.4s;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav::-webkit-scrollbar {
    height: 5px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav::-webkit-scrollbar-track {
    background: transparent;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .nav::-webkit-scrollbar-thumb {
    background: #16b8f2;
    border-radius: 3px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section {
    display: flex;
    flex-basis: 30%;
    flex-shrink: 0;
    height: 470px;
    position: relative;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 10px;
    width: 100%;
}

@keyframes flow-out-animating {
    0% {
        left: 0;
    }

    to {
        left: -1230px;
    }
}

@keyframes slide1 {
    0% {
        transform: translateX(300%);
    }

    50% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-320%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(50%);
    }

    50% {
        transform: translateX(-320%);
    }

    to {
        transform: translateX(-640%);
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .innerbg {
    cursor: pointer;
    display: flex;
    gap: 10px;
    place-items: center;
    position: relative;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .innerbg
    .avatar-border {
    position: absolute;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .innerbg
    .avatar-border
    img {
    width: 120px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .right-panel {
    position: relative;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item {
    display: flex;
    flex-shrink: 0;
    height: 146px;
    justify-content: center;
    margin-right: 10px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .total-deposit-container {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 15px;
    text-align: left;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .total-deposit-container
    .amount-wrapper {
    align-items: center;
    display: flex;
    gap: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1500px) {
    #PageMain
        > .ranking
        > .content
        > .box.rankingbox
        > .rankingwrap
        > .top-ranks-section
        .inner-layer
        .top-ranks-item
        .total-deposit-container
        .amount-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .total-deposit-container
    .amount-wrapper
    .amount {
    font-size: 18px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item.rank-1
    .top-ranks-container {
    background: url(https://file.onetopdev.com/img/frontend/ranking/rank-1-bg.png)
        no-repeat center -37px;
    background-size: cover;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item.rank-2
    .top-ranks-container {
    background: url(https://file.onetopdev.com/img/frontend/ranking/rank-2-bg.png)
        no-repeat -70px;
    background-size: cover;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item.rank-3
    .top-ranks-container {
    background: url(https://file.onetopdev.com/img/frontend/ranking/rank-3-bg.png)
        no-repeat -160px;
    background-size: cover;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .top-ranks-container {
    background: #16181e;
    border: 2px solid #364255;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .top-ranks-container:hover {
    border: 2px solid #8600f7;
    box-shadow: 0 0 10px #8600f7;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .user-details {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    width: 120px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .user-name {
    color: #fff;
    cursor: pointer;
    font-size: 31px;
    font-weight: 600;
    white-space: nowrap;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .user-image {
    background: #242a32;
    border-radius: 50%;
    height: 95px;
    margin-left: 6px;
    margin-top: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5px;
    width: 95px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .deposit-label {
    color: #fff;
    font-size: 21px;
    font-weight: 100;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .amount {
    color: #d500ff;
    font-size: 21px;
    font-weight: 900;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .levelpanel {
    background: #420066;
    border: 2px solid #364255;
    border-bottom: 0;
    border-radius: 15px;
    bottom: 0;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 5px;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

@media screen and (max-width: 1600px) {
    #PageMain
        > .ranking
        > .content
        > .box.rankingbox
        > .rankingwrap
        > .top-ranks-section
        .inner-layer
        .top-ranks-item
        .levelpanel {
        display: none;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .levelpanel
    > .levelgrp {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .levelpanel
    > .levelgrp
    > .label {
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    padding-top: 5px;
    white-space: nowrap;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .levelpanel
    > .levelgrp
    > .value {
    color: #fff;
    display: flex;
    font-size: 11px;
    justify-content: center;
    text-shadow: 0 0 5px #4e00ff, 0 0 10px #4e00ff, 0 0 30px #4e00ff;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .top-ranks-section
    .inner-layer
    .top-ranks-item
    .levelpanel
    > .levelgrp
    > .value
    span {
    color: #e3449b;
    padding-left: 5px;
}

#PageMain > .ranking > .content > .box.rankingbox > .rankingwrap > .list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: scroll;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .list::-webkit-scrollbar {
    width: 5px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .list::-webkit-scrollbar-track {
    background: transparent;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    > .rankingwrap
    > .list::-webkit-scrollbar-thumb {
    background: #16b8f2;
    border-radius: 3px;
}

#PageMain > .ranking > .content > .box.rankingbox .ranking-king {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-king
    .ranking-king-entity {
    bottom: 55%;
    left: 50%;
    position: absolute;
    transform: translateX(-45%);
    width: 100%;
}

@media screen and (max-width: 1400px) {
    #PageMain
        > .ranking
        > .content
        > .box.rankingbox
        .ranking-king
        .ranking-king-entity {
        bottom: 76%;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-king
    .ranking-king-entity
    img {
    max-width: 729px;
    width: 100%;
}

#PageMain > .ranking > .content > .box.rankingbox .ranking-list {
    display: grid;
    grid-gap: 5px;
    height: 300px;
    margin-top: 10px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    top: 34%;
}

@media screen and (max-width: 1400px) {
    #PageMain > .ranking > .content > .box.rankingbox .ranking-list {
        height: 370px;
        top: 17%;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list::-webkit-scrollbar {
    border-radius: 3px;
    width: 5px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list::-webkit-scrollbar-track {
    background: transparent;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list::-webkit-scrollbar-thumb {
    background: #8600f7;
    border-radius: 3px;
}

#PageMain > .ranking > .content > .box.rankingbox .ranking-list .user-image {
    background: #242a32;
    border-radius: 22px;
    cursor: pointer;
    height: 44px;
    margin-left: 20px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    padding: 5px;
    width: 44px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-container {
    align-items: center;
    background: #161920;
    border: 1px solid #292a2f;
    border-radius: 20px;
    display: flex;
    gap: 5px;
    height: 70px;
    justify-content: space-between;
    min-width: 250px;
    overflow: hidden;
    padding: 15px 15px 15px 0;
    transition: all 0.3s;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-container:nth-child(2n) {
    background: #0c0e15;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-container:hover {
    border: 1px solid #8600f7;
    box-shadow: 0 0 10px #8600f7;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-details {
    color: #ccc;
    cursor: pointer;
    font-size: 15px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-details.user-name {
    flex-shrink: 0;
    overflow-x: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 130px;
}

@media screen and (max-width: 1300px) {
    #PageMain
        > .ranking
        > .content
        > .box.rankingbox
        .ranking-list
        .ranking-details.user-name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 110px;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .ranking-details.total-amount {
    color: #eab43a;
    flex-grow: 1;
    flex-shrink: 0;
    font-weight: 600;
    overflow-x: hidden;
    padding-right: 15px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#PageMain > .ranking > .content > .box.rankingbox .ranking-list .rank-number {
    align-content: center;
    background: #5ab138;
    border-radius: 50%;
    color: #ccc;
    display: flex;
    font-size: 13px;
    height: 25px;
    justify-content: center;
    margin-left: 42px;
    margin-top: 27px;
    -o-object-fit: contain;
    object-fit: contain;
    place-items: center;
    position: absolute;
    width: 25px;
}

#PageMain > .ranking > .content > .box.rankingbox .ranking-list .levelpanel {
    display: flex;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 300px;
    overflow: hidden;
    width: 450px;
}

@media screen and (max-width: 1900px) {
    #PageMain
        > .ranking
        > .content
        > .box.rankingbox
        .ranking-list
        .levelpanel {
        display: none;
    }
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .levelpanel
    > .levelgrp {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .levelpanel
    > .levelgrp
    > .label {
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    justify-content: center;
    text-shadow: 0 0 3px #80cbff, 0 0 10px #1681c0, 0 0 15px #1175ab;
    white-space: nowrap;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .levelpanel
    > .levelgrp
    > .value {
    color: #e9b23c;
    display: flex;
    font-size: 11px;
    justify-content: center;
    padding-top: 5px;
}

#PageMain
    > .ranking
    > .content
    > .box.rankingbox
    .ranking-list
    .levelpanel
    > .levelgrp
    > .value
    span {
    color: #e3449b;
    padding-left: 5px;
}

#PageMain > .ranking > .content > .box.faqbox {
    background-color: #000;
    flex-shrink: 0;
    min-width: 280px;
    position: relative;
    width: 16vw;
    flex: 3;
}

#PageMain > .ranking > .content > .box.faqbox .faq-border {
    height: 110%;
    inset: 0;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 105%;
}

#PageMain > .ranking > .content > .box.faqbox .faq-icon {
    inset: 0;
    left: 100px;
    position: absolute;
    top: -40px;
    width: 70%;
}

#PageMain > .ranking > .content > .box.faqbox .faq-wrapper {
    align-items: center;
    display: grid;
    flex-shrink: 0;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
}

#PageMain > .ranking > .content > .box.faqbox .question-type {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    min-width: 70px;
}

#PageMain > .ranking > .content > .box.faqbox .question {
    color: #9b9d9f;
    font-size: 16px;
    text-align: left;
}

#PageMain > .ranking > .content > .box.faqbox .faq-container {
    align-items: center;
    border-bottom: 1px solid #0e1018;
    border-inline: 1px solid;
    border-top: 1px solid #32383f;
    cursor: pointer;
    display: flex;
    gap: 30px;
    height: 65px;
    padding: 0 12px;
    z-index: 1;
}

#PageMain > .ranking > .content > .box.faqbox .faq-container:hover {
    border: 2px solid #8600f7;
    z-index: 0;
}

#PageMain > .ranking > .content > .box.faqbox .faq-header {
    margin-top: 40px;
    padding-left: 12px;
    padding-top: 40px;
    text-align: left;
}

#PageMain > .ranking > .content > .box.faqbox .faq-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

#PageMain > .ranking > .content > .box.faqbox .faq-details {
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chat-buttons {
    display: none;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
}

.chat-icon-label {
    color: #fff;
    font-size: 11px;
    margin-top: 5px;
}

@keyframes slideIn {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.SportsMatch {
    align-items: center;
    background: #171d26;
    border: 1px solid #171d26;
    border-radius: 20px;
    color: #ded9e3;
    cursor: pointer;
    display: flex;
    height: 80px;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 7px;
    position: relative;
    transition: all 0.3s;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.SportsMatch .eventCategory,
.SportsMatch .eventId,
.SportsMatch .marketName {
    display: none;
}

.SportsMatch .eventCategoryImg {
    background: #0d121b;
    border-radius: 20px;
    bottom: 10px;
    cursor: pointer;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 40px;
}

.SportsMatch .eventCategoryImg img {
    height: 53px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    width: 24px;
    margin: auto;
}

.SportsMatch .eventStatus {
    align-items: center;
    background: #757575;
    border-radius: 3px;
    color: #dbdbdb;
    cursor: pointer;
    display: flex;
    height: 22px;
    justify-content: center;
    left: 60px;
    position: absolute;
    top: 15px;
    width: 36px;
}

.SportsMatch .eventStatus.PLAYING {
    background: #c12a2b;
}

.SportsMatch .eventAt {
    align-items: center;
    background: #0f0f0f;
    border-radius: 3px;
    color: #dbdbdb;
    cursor: pointer;
    display: flex;
    height: 22px;
    justify-content: center;
    left: 100px;
    position: absolute;
    top: 15px;
    width: 110px;
}

.SportsMatch .eventGroup {
    bottom: 15px;
    color: #6c829d;
    height: 15px;
    justify-content: flex-start;
    left: 60px;
}

.SportsMatch .eventGroup,
.SportsMatch .gameEventMarketCount {
    align-items: center;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
}

.SportsMatch .gameEventMarketCount {
    bottom: 20px;
    color: #c37cff;
    justify-content: center;
    right: 25px;
    top: 20px;
}

.SportsMatch .marketItemList {
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
    width: 280px;
}

.SportsMatch .marketItemList .marketItem {
    border: 1px solid #0d121b;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    height: 60px;
    margin-left: 5px;
    position: relative;
}

.SportsMatch .marketItemList .marketItem,
.SportsMatch .marketItemList .marketItem.versus {
    align-items: center;
    background: #0d121b;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.1s;
    width: 100%;
}

.SportsMatch .marketItemList .marketItem.versus {
    border: 1px solid #131822;
    border-radius: 5px;
    color: #c37cff;
}

.SportsMatch .marketItemList .marketItem .label {
    color: #848484;
    font-size: 11px;
    height: 10px;
    transform: scale(0.7);
    transition: all 0.1s;
}

.SportsMatch .marketItemList .marketItem .spinner-box {
    display: none;
}

.SportsMatch .marketItemList .marketItem.up {
    animation: animate_odds_change_up 2s infinite;
    border: 1px solid #00d080;
}

.SportsMatch .marketItemList .marketItem.up > .market_item_odds_change_offset {
    animation: animate_odds_change_up_text 1s infinite;
    bottom: 5px;
    color: #00d080;
    display: block;
    opacity: 0;
    position: absolute;
}

.SportsMatch
    .marketItemList
    .marketItem.up
    > .market_item_odds_change_offset
    > span.up {
    display: inline-block;
}

.SportsMatch .marketItemList .marketItem.down {
    animation: animate_odds_change_down 2s infinite;
    border: 1px solid #ff491c;
}

.SportsMatch
    .marketItemList
    .marketItem.down
    > .market_item_odds_change_offset {
    animation: animate_odds_change_down_text 1s infinite;
    bottom: 5px;
    color: #ff491c;
    display: block;
    opacity: 0;
    position: absolute;
}

.SportsMatch
    .marketItemList
    .marketItem.down
    > .market_item_odds_change_offset
    > span.down {
    display: inline-block;
}

@keyframes animate_odds_change_up_text {
    0% {
        opacity: 0;
        bottom: 0;
    }

    50% {
        opacity: 1;
        bottom: 5px;
    }

    to {
        opacity: 0;
    }
}

@keyframes animate_odds_change_down_text {
    0% {
        opacity: 0;
        bottom: 10px;
    }

    50% {
        opacity: 1;
        bottom: 5px;
    }

    to {
        opacity: 0;
        bottom: 5px;
    }
}

@keyframes animate_odds_change_up {
    0% {
        border: 1px solid rgba(0, 208, 128, 0.333);
    }

    50% {
        border: 1px solid #00d080;
    }

    to {
        border: 1px solid rgba(0, 208, 128, 0.333);
    }
}

@keyframes animate_odds_change_down {
    0% {
        border: 1px solid rgba(255, 73, 28, 0.333);
    }

    50% {
        border: 1px solid #ff491c;
    }

    to {
        border: 1px solid rgba(255, 73, 28, 0.333);
    }
}

.SportsMatch .marketItemList .marketItem.active,
.SportsMatch .marketItemList .marketItem:hover:not(.versus) {
    background: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    transition: all 0.1s;
}

.SportsMatch .marketItemList .marketItem.active > .label,
.SportsMatch .marketItemList .marketItem.active > .odds,
.SportsMatch .marketItemList .marketItem:hover:not(.versus) > .label,
.SportsMatch .marketItemList .marketItem:hover:not(.versus) > .odds {
    color: #c37cff;
    transition: all 0.1s;
}

.SportsMatch .marketItemList .marketItem.pre_active:not(.active) {
    background: rgba(195, 124, 255, 0.149);
    border: 1px solid #8600f7;
    transition: all 0.1s;
}

.SportsMatch .marketItemList .marketItem.pre_active:not(.active) > .label,
.SportsMatch .marketItemList .marketItem.pre_active:not(.active) > .odds {
    color: #c37cff;
    transition: all 0.1s;
}

.SportsMatch .marketItemList .marketItem.pre_active:not(.active) .spinner_box {
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.SportsMatch
    .marketItemList
    .marketItem.pre_active:not(.active)
    .spinner_box
    .spinner {
    animation: loader-animation 1s linear infinite;
    background: radial-gradient(farthest-side, #8600f7 94%, #8600f7) top/3px 3px
            no-repeat,
        conic-gradient(transparent 30%, #8600f7);
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 3px),
        #000 0
    );
    width: 50px;
}

@keyframes loader-animation {
    to {
        transform: rotate(1turn);
    }
}

.SportsMatch .marketItemList .marketItem > .market_item_odds_change_offset,
.SportsMatch
    .marketItemList
    .marketItem
    > .market_item_odds_change_offset
    > span.down,
.SportsMatch
    .marketItemList
    .marketItem
    > .market_item_odds_change_offset
    > span.up {
    display: none;
}

.SportsMatch .marketItemList .marketItem:first-child {
    margin-left: 0;
}

.SportsMatch .marketItemList .marketItem:active {
    background: #155a75;
    transition: all 0.1s;
}

.SportsMatch .marketItemList.deactivated > .marketItem {
    background: #131822;
    border: 0;
}

.SportsMatch .marketItemList.deactivated > .marketItem > .label {
    color: rgba(153, 160, 171, 0.133);
}

.SportsMatch .marketItemList.deactivated > .marketItem > .odds {
    color: rgba(171, 178, 190, 0.133);
}

.SportsMatch .marketItemList.deactivated > .marketItem > .spinner_box,
.SportsMatch
    .marketItemList.deactivated
    > .marketItem
    > .spinner_box
    > .spinner {
    animation: none;
    display: none;
    opacity: 0;
}

.SportsMatch .marketItemList.deactivated > .marketItem > .locker {
    background-image: url(https://file.onetopdev.com/img/frontend/icon/lock.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    display: flex;
    height: 30px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    width: 30px;
}

.SportsMatch .marketItemList.deactivated > .marketItem.active,
.SportsMatch .marketItemList.deactivated > .marketItem:hover {
    background: #0d121b;
}

.SportsMatch .marketItemList.deactivated > .marketItem.active > .label,
.SportsMatch .marketItemList.deactivated > .marketItem:hover > .label {
    color: rgba(153, 160, 171, 0.133);
}

.SportsMatch .marketItemList.deactivated > .marketItem.active > .odds,
.SportsMatch .marketItemList.deactivated > .marketItem:hover > .odds {
    color: rgba(171, 178, 190, 0.133);
}

.SportsMatch .marketItemList.deactivated > .marketItem.pre_active {
    background: #131822;
}

.SportsMatch .marketItemList.deactivated > .marketItem.pre_active > .label {
    color: rgba(153, 160, 171, 0.133);
}

.SportsMatch .marketItemList.deactivated > .marketItem.pre_active > .odds {
    color: rgba(171, 178, 190, 0.133);
}

.SportsMatch
    .marketItemList.deactivated
    > .marketItem.pre_active
    > .spinner_box,
.SportsMatch
    .marketItemList.deactivated
    > .marketItem.pre_active
    > .spinner_box
    > .spinner {
    animation: none;
    display: none;
    opacity: 0;
}

.SportsMatch .marketItemList.deactivated > .marketItem.pre_active > .locker {
    animation: animate_vibration 0.1s;
    filter: sepia(100%) hue-rotate(-90deg) saturate(200%);
    transition: all 50ms;
}

@keyframes animate_vibration {
    0% {
        margin-left: -5px;
    }

    50% {
        margin-left: 5px;
    }

    to {
        margin-left: -5px;
    }
}

.SportsMatch .awayTeamImg,
.SportsMatch .homeTeamImg {
    align-items: center;
    background: #1b222c;
    border: 1px solid #151a23;
    border-radius: 40px;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 60px;
    justify-content: center;
    width: 60px;
}

.SportsMatch .awayTeamImg img,
.SportsMatch .homeTeamImg img {
    background-color: #0b0f17;
    border-radius: 40px;
    height: 50px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    padding: 5px;
    width: 50px;
}

.SportsMatch .homeTeam {
    justify-content: flex-end;
    padding-right: 10px;
}

.SportsMatch .awayTeam,
.SportsMatch .homeTeam {
    align-items: center;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}

.SportsMatch .awayTeam {
    justify-content: flex-start;
    padding-left: 10px;
}

.SportsMatch .homeTeamScore {
    color: #efc83a;
}

.SportsMatch .awayTeamScore,
.SportsMatch .homeTeamScore {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
}

.SportsMatch .awayTeamScore {
    color: #7fd988;
}

.SportsMatch img {
    max-height: 80px;
    max-width: 80px;
}

.SportsMatch:hover {
    background: #0b0e18;
    box-shadow: 0 0 0 #8600f7, 0 0 10px #8600f7, 0 0 30px #8600f7;
    transition: all 0.3s;
}

.SportsMatch:hover .awayTeamScore,
.SportsMatch:hover .homeTeamScore {
    color: #c37cff;
}

.ESportsMatch {
    align-items: center;
    background: #1b222c;
    border-radius: 30px;
    color: #ded9e3;
    cursor: pointer;
    display: flex;
    height: 265px;
    justify-content: center;
    margin-top: 7px;
    position: relative;
    transition: all 0.3s;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.ESportsMatch .eventCategory,
.ESportsMatch .eventId,
.ESportsMatch .marketName {
    display: none;
}

.ESportsMatch .label {
    color: #fff;
    display: flex;
    font-size: 55px;
    font-weight: 800;
    left: 45px;
    position: absolute;
    text-shadow: 0 0 0 #c37cff, 0 0 10px #c37cff, 0 0 30px #c37cff;
    top: 25px;
}

.ESportsMatch .eventCategoryImg {
    border-radius: 20px;
    left: 40px;
    position: absolute;
    top: 100px;
}

.ESportsMatch .eventCategoryImg img {
    border-radius: 20px;
    height: 45px;
}

.ESportsMatch .eventStatus {
    align-items: center;
    background: #757575;
    border-radius: 3px;
    color: #dbdbdb;
    cursor: pointer;
    display: flex;
    height: 25px;
    justify-content: center;
    left: 320px;
    position: absolute;
    top: 110px;
    width: 38px;
}

.ESportsMatch .eventStatus.active {
    background: #c12a2b;
}

.ESportsMatch .eventAt {
    background: #0f0f0f;
    border-radius: 3px;
    color: #dbdbdb;
    cursor: pointer;
    justify-content: center;
    left: 363px;
    width: 110px;
}

.ESportsMatch .eventAt,
.ESportsMatch .eventGroup {
    align-items: center;
    display: flex;
    height: 25px;
    position: absolute;
    top: 110px;
}

.ESportsMatch .eventGroup {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    justify-content: flex-start;
    left: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 195px;
}

.ESportsMatch .gameEventMarketCount {
    align-items: center;
    bottom: 20px;
    color: #16bdf9;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 20px;
}

.ESportsMatch .marketItemList {
    display: flex;
    left: 393px;
    position: absolute;
    top: 163px;
}

.ESportsMatch .marketItemList .marketItem {
    flex-direction: column;
}

.ESportsMatch .marketItemList .marketItem,
.ESportsMatch .marketItemList .marketItem .market_item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    justify-content: center;
    transition: all 0.1s;
}

.ESportsMatch .marketItemList .marketItem .market_item {
    background: #0d121b;
    border: 1px solid #0d121b;
    border-radius: 6px;
    height: 24px;
    margin-bottom: 11px;
    width: 80px;
}

.ESportsMatch .marketItemList .marketItem .market_item:hover {
    background: #8600f7;
    border: 1px solid #8600f7;
    color: #fff;
    transition: all 0.1s;
}

.ESportsMatch .marketItemList .marketItem .market_item:active {
    background: #155a75;
    transition: all 0.1s;
}

.ESportsMatch .homeTeamImg {
    align-items: center;
    background: #1b222c;
    border: 1px solid #151a23;
    border-radius: 12px;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 24px;
    justify-content: center;
    left: 50px;
    position: absolute;
    top: 165px;
    width: 24px;
}

.ESportsMatch .homeTeamImg img {
    background-color: #fff;
    border-radius: 12px;
    height: 24px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    padding: 2px;
    width: 24px;
}

.ESportsMatch .awayTeamImg {
    align-items: center;
    background: #1b222c;
    border: 1px solid #151a23;
    border-radius: 12px;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: 24px;
    justify-content: center;
    left: 50px;
    position: absolute;
    top: 200px;
    width: 24px;
}

.ESportsMatch .awayTeamImg img {
    background-color: #fff;
    border-radius: 12px;
    height: 24px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center;
    padding: 2px;
    width: 24px;
}

.ESportsMatch .homeTeam {
    top: 169px;
}

.ESportsMatch .awayTeam,
.ESportsMatch .homeTeam {
    align-items: center;
    color: #59626c;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: flex-end;
    left: 85px;
    padding-right: 10px;
    position: absolute;
}

.ESportsMatch .awayTeam {
    top: 204px;
}

.ESportsMatch .awayTeamScore,
.ESportsMatch .homeTeamScore {
    align-items: center;
    color: #7fd988;
    display: none;
    font-size: 17px;
    font-weight: 600;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

.ESportsMatch .gameEventMarketCount {
    display: none;
}

.ESportsMatch .eventCategoryBackgroundImage {
    border-radius: 30px;
    bottom: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.ESportsMatch .eventCategoryBackgroundImage img {
    height: 104%;
    margin-right: -70px;
    margin-top: -4px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    width: 95%;
}

.ESportsMatch .eventCategoryEntityImage {
    border-radius: 30px;
    bottom: 0;
    display: block;
    position: absolute;
    right: 0;
}

.ESportsMatch.type-2 {
    border-radius: 5px;
    overflow: hidden;
}

.ESportsMatch.type-2 .eventCategoryBackgroundImage {
    border-radius: 5px;
}

.background-container {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-container .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 120px;
}

.background-container .particles.particles-container-0 {
    z-index: 8;
}

.background-container .particles.particles-container-0 .particle {
    position: absolute;
}

.background-container .particles.particles-container-0 .particle.initial {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.background-container .particles.particles-container-0 .particle.animated {
    transition: all 1s;
    opacity: 1;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-0 {
    left: 0;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-1 {
    left: 29vw;
    top: 64vh;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.2s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-2 {
    top: 55vh;
    left: 76vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.4s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-3 {
    left: 86vw;
    top: 31vh;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-4 {
    left: 82vw;
    top: 15vh;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-5 {
    left: 36vw;
    top: 58vh;
    width: 8vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-6 {
    left: 63vw;
    top: 64vh;
    width: 12vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-7 {
    left: 78vw;
    width: 5vw;
    top: 4vh;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.4s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-8 {
    left: 52vw;
    top: 73vh;
    width: 6vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-9 {
    left: 92vw;
    top: 15vh;
    width: 3vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.8s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-10 {
    left: 16vw;
    top: 69vh;
    width: 12vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-11 {
    left: 36vw;
    top: 71vh;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2.2s;
}

.background-container
    .particles.particles-container-0
    .particle.animated.particle-img-12 {
    right: 0;
    width: 9vw;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2.4s;
}

.background-container .particles.particles-container-1 .particle {
    position: absolute;
}

.background-container .particles.particles-container-1 .particle.initial {
    opacity: 0;
}

.background-container .particles.particles-container-1 .particle.animated {
    transition: all 1s;
    opacity: 1;
}

.background-container
    .particles.particles-container-1
    .particle.animated.particle-img-0 {
    left: 49vw;
    width: 9vw;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.background-container .particles.particles-container-2 .particle {
    position: absolute;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-0 {
    left: 7vw;
    width: 8vw;
    top: 10vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-1 {
    left: 28vw;
    width: 10vw;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.7s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-2 {
    left: 60vw;
    width: 6vw;
    top: 2vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-3 {
    right: 16vw;
    width: 8vw;
    top: 6vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-4 {
    right: 0;
    width: 19vw;
    top: 21vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.4s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-5 {
    left: 7vw;
    width: 10vw;
    top: 45vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-6 {
    left: 8vw;
    width: 16vw;
    top: 51vh;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.1s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-7 {
    left: 30vw;
    top: 55vh;
    width: 9vw;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.6s;
}

.background-container
    .particles.particles-container-2
    .particle.particle-img-8 {
    right: 17vw;
    top: 66vh;
    width: 13vw;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.8s;
}

.background-container .overlay {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.background-container .overlay .center-details {
    position: relative;
    width: 100%;
    height: -moz-min-content;
    height: min-content;
    justify-content: center;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.background-container .overlay .center-details .visual-img {
    position: absolute;
    transition: all 2ms;
}

.background-container .overlay .center-details .visual-img.left-img-0 {
    width: 63%;
    transition: all 1s;
}

.background-container .overlay .center-details .visual-img.left-img-0.initial {
    transition: none;
    top: -57vh;
    left: -30vw;
    opacity: 1;
}

.background-container .overlay .center-details .visual-img.left-img-0.animated {
    left: -9vw;
    top: -85%;
    animation: float 5s ease-in-out infinite;
}

.background-container .overlay .center-details .visual-img.left-img-1 {
    width: 56%;
    left: -2vw;
    animation: float 5s ease-in-out infinite;
}

.background-container .overlay .center-details .visual-img.right-img-0 {
    width: 74%;
    transition: all 1s;
    z-index: 6;
}

.background-container .overlay .center-details .visual-img.right-img-0.initial {
    transition: none;
    bottom: -77vh;
    right: -40vw;
    opacity: 1;
}

.background-container
    .overlay
    .center-details
    .visual-img.right-img-0.animated {
    right: -15vw;
    top: -64%;
    animation: float 4s ease-in-out infinite;
}

.background-container .overlay .center-details .visual-img.right-img-1 {
    width: 37%;
    right: 3vw;
    top: -86%;
    animation: float 4s ease-in-out infinite;
}

.background-container .overlay .center-details .visual-img.right-img-2 {
    width: 23vw;
    z-index: 6;
}

.background-container .overlay .center-details .visual-img.right-img-2.initial {
    transition: none;
    opacity: 1;
}

.background-container
    .overlay
    .center-details
    .visual-img.right-img-2.animated {
    bottom: -2vh;
    right: 30.7vw;
    top: -170px;
    animation: float 4s ease-in-out infinite;
}

.background-container .overlay .center-details.center-text-0 .text-container {
    line-height: 1;
}

.background-container
    .overlay
    .center-details.center-text-0
    .text-container
    .top-text {
    color: #fff;
    font-size: 5.2vw;
    letter-spacing: 2px;
    text-align: left;
    margin-left: 4vw;
}

.background-container
    .overlay
    .center-details.center-text-0
    .text-container
    .middle-text {
    color: #cb64f4;
    font-size: 6.5vw;
}

.background-container .overlay .center-details.center-text-0 .text-container-2 {
    line-height: 1;
    z-index: 7;
}

.background-container
    .overlay
    .center-details.center-text-0
    .text-container-2
    .bottom-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 66, 255, 0.63), 0 0 10px rgba(0, 66, 255, 0.63),
        0 0 15px rgba(0, 66, 255, 0.63), 0 0 20px rgba(0, 66, 255, 0.63),
        0 0 25px rgba(0, 66, 255, 0.63), 0 0 30px rgba(0, 66, 255, 0.63),
        0 0 35px rgba(0, 66, 255, 0.63);
    -webkit-text-stroke: 1px #00ffff; /* ขนาด 1px สีฟ้า */
    text-stroke: 1px #00ffff; /* สำหรับเบราว์เซอร์ที่รองรับในอนาคต */
    font-size: 5.2vw;
    letter-spacing: 2px;
    text-align: left;
    margin-left: 4vw;
}

.background-container .overlay .center-details.center-text-1 .text-container {
    line-height: 1;
}

.background-container
    .overlay
    .center-details.center-text-1
    .text-container
    .top-text {
    color: #64c59a;
    font-size: 3.7vw;
}

.background-container .overlay .center-details.center-text-1 .text-container-2 {
    line-height: 1;
}

.background-container
    .overlay
    .center-details.center-text-1
    .text-container-2
    .bottom-text {
    color: #fff;
    text-shadow: 0 0 5px #64c59a, 0 0 10px #64c59a, 0 0 15px #64c59a,
        0 0 20px #64c59a, 0 0 25px #64c59a, 0 0 30px #64c59a, 0 0 35px #64c59a;
    font-size: 6.2vw;
    letter-spacing: -2px;
    font-weight: 900;
}

.background-container .overlay .center-details.center-text-2 {
    line-height: 1;
}

.background-container .overlay .center-details.center-text-2 .text-container {
    display: flex;
    align-self: center;
    gap: 15vw;
    line-height: 1;
}

.background-container
    .overlay
    .center-details.center-text-2
    .text-container
    .middle-text,
.background-container
    .overlay
    .center-details.center-text-2
    .text-container
    .top-text {
    color: #e674f6;
    font-size: 3.7vw;
    font-weight: 900;
    letter-spacing: -2px;
}

.background-container .overlay .center-details.center-text-2 .text-container-2 {
    display: flex;
    align-self: center;
    gap: 19vw;
    line-height: 1;
}

.background-container
    .overlay
    .center-details.center-text-2
    .text-container-2
    .bottom-text,
.background-container
    .overlay
    .center-details.center-text-2
    .text-container-2
    .last-text {
    color: #fff;
    text-shadow: 0 0 5px #e674f6, 0 0 10px #e674f6, 0 0 15px #e674f6,
        0 0 20px #e674f6, 0 0 25px #e674f6, 0 0 30px #e674f6, 0 0 35px #e674f6;
    font-size: 12vw;
    letter-spacing: -2px;
    font-weight: 900;
}

.background-container .visualNav {
    bottom: 35px;
    display: flex;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    z-index: 10;
}

.background-container .visualNav .nav-dot {
    background: #222a3f;
    border-radius: 10px;
    cursor: pointer;
    height: 20px;
    margin-left: 8px;
    margin-right: 8px;
    width: 20px;
}

.background-container .visualNav .nav-dot.active {
    background: #fff;
    box-shadow: 0 0 0 #fff, 0 0 10px #0042ff, 0 0 30px #0042ff;
    transition: all 0.5s;
    width: 50px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-12px);
    }

    50% {
        transform: translateY(6px);
    }

    75% {
        transform: translateY(-6px);
    }

    to {
        transform: translateY(0);
    }
}

.background-container .fade-in {
    animation: fadeIn 3s forwards;
}

.background-container .fade-out {
    animation: fadeOut 3s forwards;
}

.background-container .slide-down {
    animation: slideDown 0.5s forwards;
}

.background-container .slide-up {
    animation: slideUp 0.5s forwards;
}

.background-container .slide-out-down {
    animation: slideOutDown 0.5s forwards;
}

.background-container .slide-out-top {
    animation: slideOutTop 0.5s forwards;
}

.background-container .scale {
    animation: scale-up 2s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes scale-up {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-60vh);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(60vh);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    0% {
        transform: translateY(0);
    }

    to {
        transform: translateY(60vh);
    }
}

@keyframes slideOutTop {
    0% {
        transform: translateY(0);
    }

    to {
        transform: translateY(-60vh);
    }
}
