@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif
}

body {
    width: 100%;
    min-height: 100vh;
    background: #000
}

.row {
    display: flex
}

.col {
    display: flex;
    flex-direction: column
}

.floating_btn {
    position: fixed;
    top: 40%;
    right: 0;
    background: linear-gradient(270deg, #484B5A 0%, #424A57 28.47%, #515767 51.24%, #414551 71.95%, #3C3E4D 99.38%);
    padding: 15px;
    border-radius: 10px 0 0 10px;
    z-index: 99;
    cursor: pointer;
}

.floating_btn img {
    width: 50px
}

header {
    width: 100%;
    background: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .6);
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 99
}

header .logo {
    width: 100%;
    text-align: center;
    background: -webkit-linear-gradient(#fdeed8, #f9e5c8, #f4d8b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

header .logo span {
    background: -webkit-linear-gradient(#ffc93e, #ffef6b, #ffc93e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    height: 22px
}

header .logo img {
    width: 28vmin;
    min-width: 180px
}

.container {
    width: 100%;
    position: relative
}

.container .bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-height: 20vh;
    -o-object-fit: cover;
    object-fit: cover
}

.container .wrap {
    z-index: 9;
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 15px;
    gap: 20px
}

.container .wrap .banner {
    width: 100%
}

.container .wrap .banner img {
    width: 100%
}

.container .wrap .infor_wrap {
    width: 100%;
    border: 3px solid #edcba1;
    border-radius: 15px;
    position: relative
}

.container .wrap .infor_wrap .title_wrap {
    position: absolute;
    width: 360px;
    top: -17px;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 999
}

.container .wrap .infor_wrap .title_wrap .icon_bg {
    width: 100%;
    max-width: 420px
}

.container .wrap .infor_wrap .title_wrap span {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700
}

.container .wrap .infor_wrap .infor_block {
    width: 100%;
    padding: 50px 20px 20px;
    overflow: hidden
}

.container .wrap .infor_wrap .infor_block .infor_left {
    width: 35%;
    gap: 15px;
    padding-right: 20px;
    animation: slide-in-bl .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.container .wrap .infor_wrap .infor_block .infor_left img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5))
}

.container .wrap .infor_wrap .infor_block .infor_left button {
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    background: linear-gradient(#f39898, #cc1313, #b21010, #e63232, #611212);
    color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.container .wrap .infor_wrap .infor_block .infor_left button::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 400%;
    top: -250%;
    left: -70%;
    opacity: 0;
    transform: rotate(30deg);
    animation: shining 3s infinite both;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2196078431) 77%, rgb(255, 255, 255) 92%, rgba(255, 255, 255, 0) 100%)
}

.container .wrap .infor_wrap .infor_block .infor_left button img {
    width: 26px;
    filter: brightness(0) invert(1)
}

.container .wrap .infor_wrap .infor_block .infor_right {
    flex: 1;
    border-left: 2px solid #fff;
    padding-left: 20px;
    justify-content: space-between;
    gap: 10px;
    animation: slide-in-tr .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row {
    width: 100%;
    align-items: center;
    gap: 15px
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row .ms_block {
    width: -moz-fit-content;
    width: 120px;
    text-align: center;
    padding: 12px 25px;
    min-width: 100px;
    color: #fff;
    background: linear-gradient(rgb(33, 40, 59) 0%, rgb(42, 50, 73) 52.6%, rgb(33, 40, 59) 100%);
    border-radius: 12px
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row .ms_block span {
    font-size: 18px;
    background: -webkit-linear-gradient(#ffc93e, #ffef6b, #ffc93e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-weight: 600;
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row img {
    width: 40px
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row .link {
    width: -moz-fit-content;
    width: fit-content;
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    color: #fff;
    background: linear-gradient(rgb(33, 40, 59) 0%, rgb(42, 50, 73) 52.6%, rgb(33, 40, 59) 100%);
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row .link span {
    font-size: 18px;
    background: -webkit-linear-gradient(#ffc93e, #ffef6b, #ffc93e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row button {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    background: linear-gradient(#f39898, #cc1313, #b21010, #e63232, #611212);
    color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.container .wrap .infor_wrap .infor_block .infor_right .infor_row button::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 400%;
    top: -250%;
    left: -70%;
    opacity: 0;
    transform: rotate(30deg);
    animation: shining 3s infinite both;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2196078431) 77%, rgb(255, 255, 255) 92%, rgba(255, 255, 255, 0) 100%)
}

footer {
    width: 100%
}

footer .footer_wrap {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto
}

footer .footer_wrap .footer_license_row {
    width: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 20px
}

footer .footer_wrap .footer_license_row .footer_license {
    width: 35%;
    max-width: 180px;
    gap: 10px
}

footer .footer_wrap .footer_license_row .footer_license .title {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    color: #fff;
    gap: 10px;
    align-items: center
}

footer .footer_wrap .footer_license_row .footer_license .title img {
    width: 26px
}

footer .footer_wrap .footer_license_row .footer_license img {
    width: 85%
}

footer .footer_wrap .copyright {
    margin: 30px 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px
}

@media only screen and (max-width: 900px) {
    header .logo {
        font-size: 2.4rem
    }

    .container .wrap .infor_wrap .title_wrap {
        width: 230px;
        top: -11px
    }

    .container .wrap .infor_wrap .title_wrap span {
        font-size: 14px
    }

    .floating_btn {
        top: 20%;
        padding: 10px
    }

    .floating_btn img {
        width: 32px
    }
}

@media only screen and (max-width: 800px) {
    .container .wrap .infor_wrap .infor_block {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 35px 10px 10px
    }

    .container .wrap .infor_wrap .infor_block .infor_right {
        border: 0;
        padding: 0
    }

    .container .wrap .infor_wrap .infor_block .infor_right .infor_row .ms_block {
        padding: 12px 20px;
        min-width: 80px;
        max-width: 90px;
    }

    .container .wrap .infor_wrap .infor_block .infor_right .infor_row .ms_block span {
        font-size: 14px
    }

    .container .wrap .infor_wrap .infor_block .infor_right .infor_row .link {
        min-width: 93px
    }

    .container .wrap .infor_wrap .infor_block .infor_right .infor_row .link span {
        font-size: 14px
    }

    .container .wrap .infor_wrap .infor_block .infor_right .infor_row button {
        font-size: 14px;
        padding: 10px 10px;
        flex: 1
    }

    .container .wrap .infor_wrap .infor_block .infor_left {
        width: 100%;
        padding: 0
    }

    footer .footer_wrap .footer_license_row .footer_license .title {
        font-size: 12px
    }
}

@keyframes slide-in-tr {
    0% {
        transform: translateY(-1000px) translateX(1000px);
        opacity: 0
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-bl {
    0% {
        transform: translateY(1000px) translateX(-1000px);
        opacity: 0
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 1
    }
}

@keyframes shining {
    0% {
        opacity: 0;
        top: -250%;
        left: -90%
    }
    100% {
        opacity: 1;
        top: -100%;
        left: 150%;
        transition-property: left, top, opacity;
        transition-duration: .7s, .7s, .15s;
        transition-timing-function: ease
    }
}