*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}
.background{
    position: relative;
    width: 550px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.main-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text{
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reward{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 100%;
    max-width: 400px;
    transform-origin: center center;
    transition: transform 0s;
}
.reward img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pointer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 50px;
}
.pointer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.models{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
}
.models img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.playButton{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.playButton img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* popout win */
.popout-win{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}
.popout-win.show{
    display: flex;
}
.popout-win .frameeffect{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    z-index: 1001;
    pointer-events: none;
}
.popout-win .frameeffect img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popout-win .image-win{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    z-index: 1003;
}
.popout-win .image-win img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popout-win .mode{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 450px;
    z-index: 1003;
}
.popout-win .mode img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popout-win .buttons{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
    z-index: 1004;
    margin-top: 150px;
}
.popout-win .buttons img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}