.top-video-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.video-thumbnail img {
    transition: transform 0.3s ease;
    width: 100%;
}
.video-thumbnail:hover img {
    transform: scale(1.05);
}
.video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}
.video-thumbnail:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: #fff;
}
.video-thumbnail .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    font-size: 18px;
    margin: 0;
}

/* Modal Styles */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
}
.video-modal-content {
    position: relative;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 900px;
}
.video-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    line-height: 30px;
    text-align: center;
    z-index: 10;
}
.video-modal-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.video-container video {
    width: 100%;
    height: auto;
    max-height: 80vh;
}