/* Animation styles for the webinar registration button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 60, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 60, 0);
    }
}

/* Hover effect for the register button */
#webinar-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4);
    transition: all 0.3s ease;
}

/* Active effect for the register button */
#webinar-register-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(255, 0, 60, 0.4);
}

/* Watch trailer button styles */
.watch-trailer-btn {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Hover effect for the watch trailer button */
.watch-trailer-btn:hover {
    background-color: rgba(0, 0, 0, 0.85) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Active effect for the watch trailer button */
.watch-trailer-btn:active {
    transform: scale(0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}
