* {
    box-sizing: border-box;
}

.pc {
    display: none;
}

.h5 {
    display: block;
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    background-image: url('./img/mobileBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overscroll-behavior-y: none;
}

.page-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-content> :not(:last-child) {
    flex-grow: 1;
}

.slots-master-banner {
    width: 100%;
}

.jackpot {
    width: 100%;
    height: 3.224rem;
}

.marquee {
    --gap: 0.5rem;
    padding: 0;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
    position: relative;
}

.marquee_content {
    flex-shrink: 0;
    display: flex;
    /* * height: 100vw; */
    animation: scroll 15s linear infinite;
    gap: var(--gap);
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.marquee_content img {
    width: 17.67rem;
    height: 2.6rem;
}

.download-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 1.35rem;
    align-items: center;
    justify-content: space-evenly;
    background-color: #000000;
}

.app-icon {
    width: 1rem;
    height: 1rem;
}

.appdownload-desc {
    display: flex;
    flex-direction: column;
    width: 3.02rem;
    height: 1.08rem;
}

.highlight-desc {
    font: normal normal bold 0.315rem / 0.51rem SF Pro, sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
}

.normal-desc {
    font: normal normal normal 0.22rem / 0.24rem SF Pro, sans-serif;
    color: #FFE81A;
}

.btn-download {
    width: 2.08rem;
    height: 0.62rem;
    font: normal normal bold 0.26rem / 0.3rem SF Pro, sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(90deg, #ff2700 0%, #ff00ba 100%) 0% 0% no-repeat padding-box;
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
}

@media only screen and (min-width: 992px) {

    html,
    body {
        padding: 0;
        margin: 0;
        background-image: url('./img/webBg.png');
        font-family: SF Pro, sans-serif;
    }

    .page-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .page-content img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .h5 {
        display: none;
    }

    .pc {
        display: block;
        margin: 0 auto;
    }

    .row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 80px 0;
        gap: 10px;
    }

    .column {
        box-sizing: border-box;
    }

    .column img {
        width: 2.2rem;
    }

    .column2 {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -0.15rem;
    }

    .column2 img {
        width: 1.8rem;
        height: 1.5rem;
    }

    .btn-download {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.2rem;
        height: 0.2rem;
        background: transparent linear-gradient(90deg, #ff2700 0%, #ff00ba 100%) 0% 0% no-repeat padding-box;
        border-radius: 30px;
        font: normal normal bold 0.1rem / 0.08rem SF Pro, sans-serif;
        text-decoration: none;
        color: #ffffff;
        margin: 0.08rem auto 0;
    }

    .marquee {
        --gap: 100px;
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
        width: 100%;
        position: relative;
        margin-top: -0.12rem;
    }

    .marquee_content {
        flex-shrink: 0;
        display: flex;
        animation: scroll 30s linear infinite;
        gap: var(--gap);
        padding: 0;
        margin-block-start: 0;
        margin-block-end: 0;
    }

    .marquee_content img {
        width: 9.8rem;
        height: 1.3rem;
    }

}

@media only screen and (min-width: 768px) {
    .slots-master-banner {
        width: 4.95rem;
    }

    .jackpot {
        width: 5.5rem;
        height: 2.6rem;
    }

    .marquee {
        padding-bottom: 0.15rem;
    }

    .marquee_content img {
        width: 100%;
        height: 100%;
    }

    .app-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

@media (device-width: 1024px) and (device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    .row {
        padding-top: 0.5rem;
    }

    .marquee_content img {
        width: 100%;
        height: 3.6rem;
    }

    .column img {
        width: 3.5rem;
    }

    .column2 img {
        width: 2.8rem;
        height: 2.5rem;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}