/* Video Module CSS */
.video-container-section {
    background: transparent;
}
.video-wrapper {
    position: relative;
    overflow: hidden;
    cursor: none; /* Hide default cursor to show custom one */
    border-radius: 40px;
}
.sleeping-video {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.video-wrapper:hover .sleeping-video {
    transform: scale(1.03);
}
.custom-video-cursor {
    position: absolute;
    top: -100px; left: -100px;
    width: auto; height: auto;
    padding: 16px 32px;
    background: rgba(3, 76, 174, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    pointer-events: none; /* Never blocks hover */
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    box-shadow: 0 15px 35px rgba(3, 76, 174, 0.4);
    letter-spacing: 0.5px;
}
