/* Modal Styles */
#sermon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    overflow: auto;
}

#sermon-modal > div {
    margin: 5% auto;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ccc;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

#modal-title {
    margin: 0 0 15px;
    color: #333;
    font-size: 20px;
}

#modal-video {
    width: 100%;
    height: 450px;
    background: #000;
    position: relative;
}

#video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}