.gameplay-section {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #A6D7A8 11.14%, #4CAF50 30.82%); */
    background: linear-gradient(180deg, #FFFFFF 0%, #2B9CF5 18.03%, #1F97F4 25.88%);

    min-height: 778px;
    padding-top: 20px;
    overflow: hidden;
}

.gameplay-section .container-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0px;
}

.gameplay-section .container-box .left {
    width: 562px;
}

.gameplay-section .container-box .left .heading-2 {
    text-align: left;
    color: #FFFFFF;
    font-weight: 700;
}

.gameplay-section .container-box .left .paragraph {
    margin-top: 26px;
    margin-bottom: 40px;
    color: #FFFFFF;
    line-height: 140%;
}

.gameplay-section .container-box .right {
    align-self: flex-end;
    transform: translate(100px, 10px);
    user-select: none;
    position: relative;
    width: 523px;
    height: 751px;
}

.gameplay-section .container-box .right .screen-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gameplay-section .container-box .right .screen-slider .screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: transform 0.55s ease;
    pointer-events: none;
}

.gameplay-section .container-box .right .screen-slider .screen-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.gameplay-section .container-box .right .screen-slider .screen-slide.exit {
    opacity: 0;
    /* transform: translateY(-18px) scale(0.97); */
}

.gameplay-section .container-box .right .screen-slider .click-effect {
    position: absolute;
    width: 158px;
    height: 148px;
    background-color: #4caf4f93;

    left: 21%;
    display: none;
} 

.gameplay-section .container-box .right .screen-slider .score-progress {
    position: absolute;
    left: 21.5%;
    top: 39.5%;
    z-index: 10;
    width: 60%;
    height: 35px;
}

.gameplay-section .container-box .right .screen-slider .score-progress .progresss {
    width: 100%;
    height: 100%;
    background: #39395079;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 4px;
}

.gameplay-section .container-box .right .screen-slider .score-progress .filled-area {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    animation: fillProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gameplay-section .container-box .right .screen-slider .score-progress .final-score {
    font-size: 26px;
    color: #FFF;
    font-weight: 400;
    font-family: 'SF Pro', sans-serif;
}

.gameplay-section .container-box .right .screen-slider .score-progress .s1 {
    transform: translate(123px, -54px);
}

.gameplay-section .container-box .right .screen-slider .score-progress .s2 {
    transform: translate(123px, -30px);
}

.gameplay-section .container-box .right .screen-slider .score-progress .s3 {
    transform: translate(78px, 31px);
}


@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 45%;
    }
}

/* =============================================
   Responsive Breakpoints
   ============================================= */

/* 1200px — constrained desktops / large tablets */
@media (max-width: 1200px) {
    .gameplay-section {
        min-height: auto;
    }

    .gameplay-section .container-box .left {
        width: 480px;
    }

    .gameplay-section .container-box .right {
        width: 440px;
        height: 630px;
        transform: translate(60px, 10px);
    }

    .gameplay-section .container-box .right .screen-slider .click-effect {
        width: 128px;
        height: 120px;
        left: 20%;
    }

    .gameplay-section .container-box .right .screen-slider .score-progress {
        top: 41.5%;
        height: 30px;
    }

    .gameplay-section .container-box .right .screen-slider .score-progress .final-score {
        font-size: 20px;
        font-weight: 400;
    }

    .gameplay-section .container-box .right .screen-slider .score-progress .s1 {
        transform: translate(96px, -52px);
    }

    .gameplay-section .container-box .right .screen-slider .score-progress .s2 {
        transform: translate(96px, -32px);
    }

    .gameplay-section .container-box .right .screen-slider .score-progress .s3 {
        transform: translate(66px, 17px);
    }

    /* 992px — tablets landscape */
    @media (max-width: 992px) {
        /* min-height: 640px; */

        .gameplay-section .container-box .left {
            width: 380px;
        }

        .gameplay-section .container-box .left .paragraph {
            margin-bottom: 28px;
        }

        .gameplay-section .container-box .right {
            width: 360px;
            height: 520px;
            transform: translate(30px, 10px);
        }

        .gameplay-section .container-box .right .screen-slider .click-effect {
            width: 109px;
            height: 104px;
            left: 21%;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress {
            top: 40.5%;
            height: 30px;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .final-score {
            font-size: 18px;
            font-weight: 400;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s1 {
            transform: translate(86px, -44px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s2 {
            transform: translate(86px, -25px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s3 {
            transform: translate(59px, 12px);
        }
    }

    /* 768px — tablets portrait / large phones */
    @media (max-width: 768px) {
        .gameplay-section {
            min-height: auto;
            padding-top: 100px;
        }

        .gameplay-section .container-box {
            flex-direction: column;
            gap: 40px;
            padding-bottom: 0;
        }

        .gameplay-section .container-box .left {
            width: 100%;
        }

        .gameplay-section .container-box .left .paragraph {
            margin-bottom: 32px;
        }

        .gameplay-section .container-box .right {
            width: 90%;
            height: 400px;
            transform: none;
            align-self: center;
        }

        .gameplay-section .container-box .right .screen-slider {
            width: 450px;
            margin: auto;
        }

        .gameplay-section .container-box .right .screen-slider .click-effect {
            width: 84px;
            height: 78px;
            left: 32%;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress {
            top: 39.5%;
            height: 26px;
            width: 38%;
            left: 32%;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .final-score {
            font-size: 13px;
            font-weight: 400;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s1 {
            transform: translate(66px, -26px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s2 {
            transform: translate(66px, -13px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s3 {
            transform: translate(48px, 13px);
        }
    }

    /* 580px — small phones */
    @media (max-width: 580px) {
        .gameplay-section .container-box {
            gap: 28px;
        }

        .gameplay-section .container-box .left .paragraph {
            margin-top: 16px;
            margin-bottom: 24px;
        }

        .gameplay-section .container-box .right {
            width: 100%;
        }

        .gameplay-section .container-box .right .screen-slider {
            width: 345px;
            margin: auto;
        }

        .gameplay-section .container-box .right .screen-slider .click-effect {
            width: 84px;
            height: 78px;
            left: 26.5%;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress {
            top: 40.5%;
            height: 26px;
            width: 48%;
            left: 27%;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .final-score {
            font-size: 12px;
            font-weight: 400;
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s1 {
            transform: translate(66px, -28px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s2 {
            transform: translate(66px, -13px);
        }

        .gameplay-section .container-box .right .screen-slider .score-progress .s3 {
            transform: translate(48px, 13px);
        }
    }

    @media (max-width: 370px) {
        .screen-slider {
            transform: translateX(-5%);
        }
    }
}
