#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    max-height: 90vh;
    background: #ffc4e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

#popup img {
    width: 50vw;
    height: auto;
    max-height: 80vh;
    margin-bottom: 20px;
    border-style:groove;
}

.popup-buttons {
    display: flex;
    gap: 20px;
}

.popup-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-buttons .watch-now {
    background-color: #007BFF;
    color: white;
}

.popup-buttons .watch-now:hover {
    background-color: #0056b3;
}

.popup-buttons .buy-now {
    background-color: #28A745;
    color: white;
}

.popup-buttons .buy-now:hover {
    background-color: #1e7e34;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #cc0000;
}