/* Drone Animation Plugin Styles */

.drone-animation-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#droneAnimationCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#droneAnimationImage {
    position: relative;
    width: 500px;
    max-width: 80vw;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .drone-animation-container {
        height: 450px;
    }
    
    #droneAnimationImage {
        width: 400px;
        max-width: 85vw;
    }
}

@media (max-width: 480px) {
    .drone-animation-container {
        height: 350px;
    }
    
    #droneAnimationImage {
        width: 300px;
        max-width: 90vw;
    }
}
