.poster-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.8);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.poster-content{
    position:relative;
    width:90%;
    max-width:700px;
    margin-left:25%;
    
}

.poster-image{
    width:50%;
    border-radius:15px;
    display:block;
}

.close-btn{
    position:absolute;
    top:-15px;
    right:300px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:white;
    font-size:24px;
    cursor:pointer;
}

.poster-actions{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.apply-btn,
.cancel-btn{
    flex:1;
    text-align:center;
    padding:12px;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
}

.apply-btn{
    background:#0b63d8;
    color:white;
}

.cancel-btn{
    background:#e5e7eb;
}