#shortsVideo {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: transparent;
}
#shortsVideo .back-drop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}
#shortsVideo .exit {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    padding: 14px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
}

#shortsVideo .exit img {
    width: 100%;
}

#shortsVideo .content {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
#shortsVideo .video-container {
    width: 100%;
    height: 100%;
    padding-top: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #1e1f1f;
}