html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.stage {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.poster {
    position: relative;
    display: block;

    max-width: 100vw;
    max-height: 100vh;
}

.poster img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100vw;
    max-height: 100vh;
}


/* =========================
   لینک‌ها
   ========================= */

.btn {
    position: absolute;
    display: block;

    left: 5.2%;
    width: 12.2%;
    height: 3.8%;
}

.b1 {
    top: 79.1%;
}

.b2 {
    top: 84.5%;
}

.b3 {
    top: 89.9%;
}

/* =========================================
   MOBILE ONLY
   ========================================= */

/* =========================================
   MOBILE ONLY
   ========================================= */

/* =====================================
   فقط موبایل
   ===================================== */

@media only screen and (max-width: 767px) {

    .stage {
        display: block !important;
        position: relative !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .poster {
        position: relative !important;
        display: block !important;

        width: 100vw !important;
        max-width: 100vw !important;

        margin-top: -50px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;

        transform: none !important;
    }

    .poster img {
        display: block !important;

        width: 100vw !important;
        max-width: 100vw !important;

        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
    }

}