@font-face {
    font-family: "CsRegular";
    src: url("https://cso.beanfun.com/assets/font/regular.ttf") format("truetype");
}

body > * {
    /* Works on Chrome, Edge, and Safari */
    /* Works on Firefox */
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: #232424 transparent;
    /* scroll thumb and track */
    scrollbar-base-color: #000;
    scrollbar-face-color: #232424;
    scrollbar-3dlight-color: #000;
    scrollbar-highlight-color: #000;
    scrollbar-track-color: #000;
    scrollbar-arrow-color: black;
    scrollbar-shadow-color: #000;
    scrollbar-dark-shadow-color: #000;
}
body > * ::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
    height: 5px;
}
body > * ::-webkit-scrollbar-track {
    background: transparent;
    /* color of the tracking area */
}
body > * ::-webkit-scrollbar-thumb {
    background: #232424;
    /* color of the scroll thumb */
    border-radius: 0px;
    /* roundness of the scroll thumb */
}
body > * ::-webkit-scrollbar-corner {
    /* the bottom corner of the scrollbar, where both horizontal and vertical scrollbars meet. */
    background-color: transparent;
}

body {
    background: #000;
    color: #ffffff;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Ubuntu,
        Helvetica Neue,
        Helvetica,
        Arial,
        PingFang TC,
        PingFang SC,
        Hiragino Sans GB,
        Microsoft JhengHei,
        Microsoft YaHei,
        Source Han Sans CN,
        sans-serif;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
th,
td {
    margin: 0px;
}

ul {
    padding: 0 0 0 0;
    margin: 0;
    list-style: none;
    list-style-image: none;
}

a.metal-btn {
    background: #9d9d9d;
    background: linear-gradient(white, #9d9d9d);
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    padding: 12px 39px;
}
a.metal-btn:hover {
    opacity: 0.85 !important;
}

a.red-gradient-btn {
    background: #8c0504;
    background: linear-gradient(#c31412, #8c0504);
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 400;
}
a.red-gradient-btn:hover {
    opacity: 0.85 !important;
}

a span.icon-with-text {
    margin-left: 28px;
    position: relative;
}
a span.icon-with-text .icon {
    position: absolute;
    top: 0px;
    left: -28px;
    display: inline-block;
}

@media all and (max-width: 1023px) {
    #BF_divHeader {
        display: none;
    }
}

@-webkit-keyframes text-revealer {
    0%,
    50% {
        transform-origin: 0 50%;
    }
    60%,
    100% {
        transform-origin: 100% 50%;
    }
    60% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

@keyframes text-revealer {
    0%,
    50% {
        transform-origin: 0 50%;
    }
    60%,
    100% {
        transform-origin: 100% 50%;
    }
    60% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

@media all and (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

@media all and (min-width: 1025px) {
    .hide-desktop-1024 {
        display: none !important;
    }
}

@media all and (max-width: 1023px) {
    .hide-mobile {
        display: none !important;
    }
}

@media all and (max-width: 1024px) {
    .hide-mobile-1024 {
        display: none !important;
    }
}

@media all and (max-width: 1279px) {
    #topBar {
        display: none !important;
    }
    #BF_divActionBar {
        display: none !important;
    }
}

body.fixed-nav nav.nav {
    position: fixed;
    width: 100vw;
    top: 0px;
}
@media all and (max-width: 1279px) {
    body.fixed-nav nav.nav {
        width: calc(100vw);
    }
}

body.characters-page nav.nav li.desktop-logo,
body.weapons-page nav.nav li.desktop-logo {
    display: none;
}

nav.nav {
    background: linear-gradient(black, rgba(0, 0, 0, 0));
    display: flex;
    align-items: center;
    padding: 0px 26.6px 0px 28px;
    z-index: 100;
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    position: relative;
}
nav.nav .close-btn {
    display: none;
}
nav.nav ul {
    padding: 0px;
}
nav.nav li {
    list-style: none;
    display: inline;
}
nav.nav li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: 300;
    transition: opacity 0.2s cubic-bezier(0.5, 0, 0.75, 0);
}
nav.nav li a:hover {
    opacity: 0.85;
}
nav.nav li a.logo img {
    width: 10.42vw;
}
nav.nav li.mobile-logo {
    display: none;
}
nav.nav li.desktop-logo {
    display: block;
}
nav.nav ul.right-links {
    height: 92px;
    margin-left: auto;
}
nav.nav ul.right-links li {
    padding: 0px 12.5px;
}
nav.nav ul.right-links li.link {
    display: inline-block;
    height: 92px;
    position: relative;
}
nav.nav ul.right-links li.link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#c31412, transparent);
    z-index: -1;
    transform-origin: 50% 0%;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}
nav.nav ul.right-links li.link:hover::after {
    transform: scaleY(1);
}
nav.nav ul.right-links li.link a {
    display: inline-flex;
    height: 92px;
    justify-content: center;
    align-items: center;
}
nav.nav ul.right-links li.link a:hover {
    opacity: 1;
}
nav.nav ul.right-links li.register-button {
    transform-origin: 0% 50%;
    padding: 0px 20px;
}
nav.nav ul.right-links li.register-button a {
    padding: 12px 36px;
}
nav.nav ul.right-links a span.icon-with-text {
    margin-left: 28px;
    position: relative;
}
nav.nav ul.right-links a span.icon-with-text .icon {
    position: absolute;
    top: 0px;
    left: -28px;
    display: inline-block;
}
nav.nav ul.right-links a span.icon-with-text__start-game .icon {
    top: 2px;
    left: -23px;
}
nav.nav ul.right-links li.mobile-links {
    display: none;
}
nav.nav .nav-hand {
    display: none;
}
@media all and (max-width: 1279px) {
    nav.nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 390px;
        background: #000;
        border-right: 0;
        padding: 0;
        flex-direction: column;
        transform: translateX(101%);
        transition: transform 0.28s ease;
    }
    nav.nav.is-open {
        transform: translateX(0%);
    }
    nav.nav .close-btn {
        cursor: pointer;
        display: block;
        position: absolute;
        top: 21px;
        right: -1px;
        background-image: url("../img/nav-toggle-btn.png");
        background-position: center;
        background-size: contain;
        width: 73px;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav.nav .close-btn svg {
        transition: opacity 0.12s ease;
    }
    nav.nav .close-btn:hover svg {
        opacity: 0.85;
    }
    nav.nav ul.logo-wrapper {
        margin-top: 37px;
        padding-left: 47.2px;
        width: 100%;
        box-sizing: border-box;
    }
    nav.nav li.desktop-logo {
        display: none;
    }
    nav.nav li.mobile-logo {
        display: block;
    }
    nav.nav ul.right-links {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        margin-top: 64.5px;
        margin-left: 0px;
        width: 100%;
        overflow: auto;
    }
    nav.nav ul.right-links li {
        padding-left: 50px;
        margin-right: 25px;
        margin-bottom: 36px;
    }
    nav.nav ul.right-links li a {
        font-size: 18px;
        font-weight: 500;
        line-height: 25px;
    }
    nav.nav ul.right-links li.link {
        height: 25px;
    }
    nav.nav ul.right-links li.link a {
        height: 25px;
    }
    nav.nav ul.right-links li.link:hover::after {
        display: none;
    }
    nav.nav ul.right-links li.register-button {
        padding-left: 50px;
        padding-top: 25.4px;
        padding-bottom: 25.3px;
        margin-top: 25px;
        margin-bottom: 21px;
        border: 1px solid #3b3b3b;
        border-left: 0;
        border-right: 0;
    }
    nav.nav ul.right-links li.register-button a {
        display: inline-block;
    }
    nav.nav ul.right-links li.register-button a.red-gradient-btn span.icon-with-text {
        font-size: 15px;
    }
    nav.nav ul.right-links li.register-button a.red-gradient-btn span.icon-with-text .icon {
        top: 2px;
    }
    nav.nav ul.right-links li.start-game {
        display: none;
    }
    nav.nav ul.right-links li.mobile-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding-right: 17px;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media,
    nav.nav ul.right-links li.mobile-links .mobile-links-help {
        display: flex;
        flex-wrap: nowrap;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media a,
    nav.nav ul.right-links li.mobile-links .mobile-links-help a {
        display: inline-block;
        width: 36px;
        height: 36px;
        margin-right: 25px;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media a:hover,
    nav.nav ul.right-links li.mobile-links .mobile-links-help a:hover {
        opacity: 1;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media a:hover svg .icon-bg,
    nav.nav ul.right-links li.mobile-links .mobile-links-help a:hover svg .icon-bg {
        fill: white;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media a:last-of-type,
    nav.nav ul.right-links li.mobile-links .mobile-links-help a:last-of-type {
        margin-right: 0;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media {
        margin-right: 25px;
    }
    nav.nav .nav-hand {
        display: block;
        position: absolute;
        -webkit-filter: blur(7px) brightness(89%) opacity(0.8);
        filter: blur(7px) brightness(89%) opacity(0.8);
        z-index: -1;
        top: 35px;
        left: 81px;
        opacity: 0;
        width: 250px;
        height: 250px;
        transform-origin: 50% 50%;
    }
}
@media all and (max-width: 430px) {
    nav.nav {
        width: calc(100vw - 38px);
        max-width: unset;
    }
    nav.nav li.mobile-logo img {
        width: 186px;
        height: 25px;
    }
    nav.nav ul.right-links {
        margin-top: 50px;
    }
    nav.nav ul.right-links li.mobile-links {
        flex-wrap: wrap;
    }
    nav.nav ul.right-links li.mobile-links .mobile-links-media {
        margin-bottom: 20px;
    }
}

.toggle-nav-btn-mobile {
    display: none;
}
@media all and (max-width: 1279px) {
    .toggle-nav-btn-mobile {
        cursor: pointer;
        display: block;
        position: fixed;
        z-index: 99;
        top: 21px;
        right: -1px;
        background-image: url("../img/nav-toggle-btn.png");
        background-position: center;
        background-size: contain;
        width: 73px;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .toggle-nav-btn-mobile svg {
        opacity: 0.5;
        transition: opacity 0.12s ease;
    }
    .toggle-nav-btn-mobile:hover svg {
        opacity: 1;
    }
}

.nav-block-layer {
    display: none;
}
@media all and (max-width: 1279px) {
    .nav-block-layer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 99;
    }
    .nav-block-layer.is-open {
        display: block;
    }
}

.weapon-categories {
    display: inline-flex;
    border-bottom: 1px solid #707070;
    padding-left: 8.05vw;
    position: relative;
    z-index: 1;
}
.weapon-categories .weapon-category {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 35px 9.5px 17px 9.5px;
    margin-right: 13px;
    height: 52px;
    position: relative;
    cursor: pointer;
}
.weapon-categories .weapon-category svg {
    transition: transform 0.5s;
}
.weapon-categories .weapon-category:before {
    content: "";
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: 0 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(rgba(195, 20, 18, 0), #c31412);
    transition:
        transform 0.5s,
        opacity 0.5s;
}
.weapon-categories .weapon-category .name {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 17px;
    color: #7e7e7e;
    white-space: nowrap;
}
.weapon-categories .weapon-category:hover .name {
    color: white !important;
}
.weapon-categories .weapon-category:hover svg path {
    fill: white !important;
}
.weapon-categories .weapon-category.active svg {
    transform: translateY(-10px) rotateZ(-20deg);
}
.weapon-categories .weapon-category.active svg path {
    fill: #c6b4b4;
}
.weapon-categories .weapon-category.active .name {
    color: #c6b4b4;
}
.weapon-categories .weapon-category.active:before {
    opacity: 1;
    transform: scaleY(1);
}

.mode-data {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
}
.mode-data .mode-img {
    width: 78px;
}
.mode-data .mode-value-blocks {
    display: inline-flex;
    margin-left: 13px;
}
.mode-data .mode-value-blocks svg {
    margin-left: -4px;
}
.mode-data .mode-value-blocks svg .start,
.mode-data .mode-value-blocks svg .stop {
    transition: stop-color 0.5s;
}
.mode-data .mode-value-blocks svg.active .start {
    stop-color: #c31412;
}
.mode-data .mode-value-blocks svg.active .stop {
    stop-color: #8c0504;
}
.mode-data .mode-value-blocks svg.none .start {
    stop-color: #000;
}
.mode-data .mode-value-blocks svg.none .stop {
    stop-color: #000;
}

#loader {
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition:
        opacity 1s ease,
        transform 0.5s;
}
#loader svg {
    -webkit-animation: breath 3s infinite;
    animation: breath 3s infinite;
    transform-origin: 50% 50%;
    transform: scale(0.8);
}
#loader.hide.bounce-out {
    transform: scale(6);
}
#loader.hide {
    opacity: 0;
}
#loader video.logo-video {
    width: 802px;
}
#loader video.logo-video.hide {
    display: none;
}
#loader video.intro-video {
    height: 100%;
}
#loader video.intro-video.hide {
    display: none;
}
@media screen and (min-width: 1601px) {
    #loader video.intro-video {
        align-self: flex-start;
        height: auto;
        width: 95%;
    }
}
@media screen and (max-width: 1279px) {
    #loader video.intro-video {
        align-self: flex-start;
        height: 97%;
        position: relative;
        top: 1.5%;
    }
}
@media screen and (max-width: 802px) {
    #loader video.logo-video {
        width: 770px;
    }
}

@-webkit-keyframes breath {
    0%,
    100% {
        opacity: 1;
    }
    40% {
        opacity: 0.6;
    }
}

@keyframes breath {
    0%,
    100% {
        opacity: 1;
    }
    40% {
        opacity: 0.6;
    }
}

@-webkit-keyframes breath-gif {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes breath-gif {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-8%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-8%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#system-msg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    z-index: 99;
    display: none;
}
#system-msg.show {
    display: block;
}
#system-msg .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 13px 20px 12px 20px;
    border-radius: 12px;
    line-height: 21px;
    background-color: #3b3b3b;
    font-size: 15px;
    width: 465px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    #system-msg .content {
        width: 320px;
        min-width: 320px;
    }
}

.UNI-footer .m-show {
    font-size: 10px !important;
}

.template-wrapper {
    display: none !important;
    visibility: hidden !important;
}

#landscape-block {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
    text-align: center;
}
#landscape-block img {
    width: 191px;
    height: 189px;
}
#landscape-block p {
    margin-top: 46px;
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    body.is-mobile {
        overflow: hidden;
    }
    body.is-mobile #landscape-block {
        display: flex;
    }
}

#ie9-popup {
    display: none;
}

.mobile-logo-and-bg .mobile-nav-black-bg,
.mobile-logo-and-bg .mobile-logo {
    display: none;
}

@media all and (max-width: 1279px) {
    .mobile-logo-and-bg .mobile-nav-black-bg {
        background: linear-gradient(black, rgba(0, 0, 0, 0));
        width: 100%;
        height: 92px;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 11;
        display: block;
    }
    .mobile-logo-and-bg .mobile-logo {
        position: fixed;
        z-index: 12;
        top: 20px;
        left: 21px;
        display: initial;
    }
    .mobile-logo-and-bg .mobile-logo img {
        width: 131px;
    }
}

nav.nav {
    position: fixed;
    width: 100vw;
    top: 0px;
}

section#download {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 45.14vw;
    -js-display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
section#download .bg-layer {
    background-image: url("https://tw.hicdn.beanfun.com/beanfun/GamaWWW/CSO/official2021/assets/img/download-page/download-bg.png");
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section#download h1 {
    font-family: CsRegular;
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 36px;
    z-index: 1;
}
section#download h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 52.5px;
    z-index: 1;
}
section#download a.red-gradient-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 365px;
    text-align: center;
    z-index: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    section#download a.red-gradient-btn {
        display: inline-block;
    }
}
section#download a.red-gradient-btn.computer-hint {
    width: 57vw;
    background: linear-gradient(rgba(195, 20, 18, 0.4), rgba(140, 5, 4, 0.4));
}
section#download a.red-gradient-btn.computer-hint span.icon-with-text {
    margin-left: 0px;
}
section#download a.red-gradient-btn.computer-hint span.icon-with-text img {
    display: none;
}
section#download .exe-infos {
    display: flex;
    -js-display: flex;
    margin-top: 14px;
    width: 211px;
    justify-content: space-between;
}
section#download .exe-info {
    color: white;
    font-size: 15px;
    font-weight: 500;
    -js-display: inline-flex;
    display: inline-flex;
}
section#download .exe-info svg {
    margin-right: 10px;
    width: 16px;
}
section#download .exe-info .file-size {
    text-transform: uppercase;
}
section#download .toggle-box {
    width: calc(470px);
    background: rgba(0, 0, 0, 0.64);
    text-align: left;
    position: absolute;
    bottom: 0px;
    border-top: 1px solid #969696;
    border-bottom: 1px solid #969696;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 34px;
    padding-left: 0px;
}
section#download .toggle-box.system-requirements {
    right: calc(470px + 13px + 13px);
}
section#download .toggle-box.manual-updates {
    right: 13px;
}
section#download .toggle-box .header:hover {
    background: rgba(0, 0, 0, 0.9);
}
section#download .toggle-box .header {
    cursor: pointer;
    display: flex;
    -js-display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding-left: 20px;
    padding-right: 25px;
}
section#download .toggle-box .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: white;
}
section#download .toggle-box.close {
    height: 54px;
}
section#download .toggle-box.close .title {
    display: initial;
}
section#download .toggle-box.close .toggle-icon {
    display: initial;
}
section#download .toggle-box.close .box-info {
    display: none;
}
section#download .toggle-box.open {
    height: 277px;
}
section#download .toggle-box.open .header {
    height: 54px;
}
section#download .toggle-box.open .box-infos {
    overflow-y: scroll;
    height: calc(277px - 54px);
}
section#download .toggle-box.open .box-info {
    display: flex;
    -js-display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 43px;
    margin-top: 26px;
    margin-bottom: 20px;
}
section#download .toggle-box.open .box-info p {
    line-height: 23px;
    font-size: 15px;
    padding-left: 30px;
}
section#download .toggle-box.open .box-info .exe-info svg path {
    fill: #adadad;
}
section#download .toggle-box.open .box-info .exe-info span {
    color: #adadad;
}
section#download .toggle-box.open .box-info:last-child {
    margin-bottom: 50px;
}
section#download .social-medias--desktop {
    position: absolute;
    left: 4.16vw;
    margin-bottom: 43px;
    height: 36px;
    bottom: 0px;
    width: 21.8vw;
    max-width: 314px;
}
section#download .social-medias--desktop div.social-medias {
    display: flex;
    -js-display: flex;
    justify-content: space-between;
}
section#download .social-medias--desktop div.social-medias .icons {
    width: 100%;
    display: flex;
    -js-display: flex;
    justify-content: space-between;
}
section#download .social-medias--desktop div.social-medias .icons a:nth-child(3) {
    margin-right: 2.43vw;
}
section#download .social-medias--desktop div.social-medias .icons a {
    text-decoration: none;
}
section#download .social-medias--desktop div.social-medias .icons a:hover svg .icon-bg {
    fill: white;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    section#download .social-medias--desktop div.social-medias .icons a {
        margin-right: 10px;
    }
}
@media screen and (max-width: 1315px) {
    section#download .social-medias--desktop {
        display: none;
    }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    section#download .toggle-box.open.system-requirements .box-info p {
        width: 93%;
    }
}
@media screen and (max-width: 1279px) {
    section#download {
        margin-top: 0px;
        width: 100%;
        height: 158vw;
    }
    section#download h1 {
        font-size: 50px;
    }
    section#download h2 {
        font-size: 30px;
        margin-bottom: 64.5px;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    section#download {
        height: 60vw;
        max-height: 600px;
    }
    section#download .red-gradient-btn.computer-hint {
        width: 245px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    section#download {
        height: 678px;
        background-size: cover;
        justify-content: flex-start;
    }
    section#download .bg-layer {
        background-image: url("https://tw.hicdn.beanfun.com/beanfun/GamaWWW/CSO/official2021/assets/img/download-page/download-bg-tablet.png");
    }
    section#download h1 {
        margin-top: 282px;
        margin-bottom: 10px;
    }
    section#download .red-gradient-btn.computer-hint {
        width: 245px;
    }
}
@media screen and (max-width: 767px) {
    section#download .bg-layer {
        background-image: url("https://tw.hicdn.beanfun.com/beanfun/GamaWWW/CSO/official2021/assets/img/download-page/download-bg-mobile.png");
    }
}

@media screen and (min-width: 1280px) {
    section#play-game-section {
        display: none;
    }
}

@media screen and (max-width: 1279px) {
    section#play-game-section {
        height: auto;
        background-image: none;
        margin: 47px auto 0px auto;
        align-items: flex-start;
    }
    section#play-game-section .play-game-wrapper {
        margin: 0px auto;
        height: auto;
        max-height: 100%;
    }
    section#play-game-section .play-game-wrapper div.social-medias {
        margin: 0px auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    section#play-game-section {
        margin-bottom: 0px;
    }
}
.lb-download * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.lb-download .gbox-wrap {
    width: 100%;
    max-width: 824px;
    border: 1px solid #8f9091;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 46px 35px;
}
.lb-download .gbox-close {
    font-size: 0;
    right: 32px;
    top: 20px;
}
.lb-download .gbox-close:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.lb-download .gbox-close:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.lb-download .gbox-content {
    position: relative;
    padding: 0px;
    width: 751px;
    height: auto;
    margin: 0 auto;
}
.lb-download_text {
    box-sizing: border-box;
    padding: 40px 0 0 0;
}
.lb-download_text ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style-type: disc;
    padding-left: 20px;

    color: #fff;
}

.lb-download_text ul li {
    text-align: left;
    font-size: 24px;
}
.lb-download__title {
    font-size: 30px;
    color: #ffffff;
    border-bottom: 1px solid #adadad;
    padding: 14px 0;
}
.lb-download__list {
    padding: 0 76px;
}
.lb-download__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #adadad;
    font-size: 24px;
    color: #ffffff;
}
.lb-download__item:last-child {
    border: none;
}
.lb-download__item-title {
    width: 176px;
    text-align: center;
    flex-shrink: 0;
    padding: 28px 0;
}
.lb-download__item-txt {
    width: 100%;
    text-align: left;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
    .lb-download .gbox-wrap {
        max-width: calc(768 / 768 * 100vw);
        border: calc(1 / 768 * 100vw) solid #8f9091;
        background-color: rgba(0, 0, 0, 0.65);
        padding: calc(60 / 768 * 100vw) calc(10 / 768 * 100vw);
    }
    .lb-download .gbox-close {
        right: calc(14 / 768 * 100vw);
        top: calc(20 / 768 * 100vw);
        width: calc(45 / 768 * 100vw);
        height: calc(45 / 768 * 100vw);
        line-height: calc(45 / 768 * 100vw);
    }
    .lb-download .gbox-close:before {
        width: calc(2 / 768 * 100vw);
    }
    .lb-download .gbox-close:after {
        width: calc(2 / 768 * 100vw);
    }
    .lb-download .gbox-content {
        width: calc(751 / 768 * 100vw);
        height: auto;
    }
    .lb-download__title {
        font-size: calc(45 / 768 * 100vw);
        border-bottom: calc(1 / 768 * 100vw) solid #adadad;
        padding: calc(14 / 768 * 100vw) 0;
    }
    .lb-download__list {
        padding: 0 calc(44 / 768 * 100vw);
    }
    .lb-download__item {
        flex-direction: column;
        align-items: center;
        border-bottom: calc(1 / 768 * 100vw) solid #adadad;
        font-size: calc(38 / 768 * 100vw);
        padding: calc(16 / 768 * 100vw) 0;
    }
    .lb-download__item-title {
        width: 100%;
        padding: 0;
    }
    .lb-download__item-txt {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .lb-download_text {
        box-sizing: border-box;
        padding: calc(60 / 768 * 100vw) 0 0 0;
    }
    .lb-download_text ul {
        padding-left: calc(20 / 768 * 100vw);
    }

    .lb-download_text ul li {
        font-size: calc(38 / 768 * 100vw);
    }
}
